mirror of
https://git.code.sf.net/p/seeddms/code
synced 2024-11-26 23:42:11 +00:00
new hooks leftContentPre and leftContentPost
This commit is contained in:
parent
55cd7b9759
commit
98da641061
|
@ -555,6 +555,9 @@ $('body').on('click', '.order-btn', function(ev) {
|
|||
}
|
||||
if ($LeftColumnSpan > 0) {
|
||||
echo "<div class=\"span".$LeftColumnSpan."\">\n";
|
||||
|
||||
echo $this->callHook('leftContentPre');
|
||||
|
||||
if ($enableFolderTree) {
|
||||
if ($showtree==1){
|
||||
$this->contentHeading("<a href=\"../out/out.ViewFolder.php?folderid=". $folderid."&showtree=0\"><i class=\"icon-minus-sign\"></i></a>", true);
|
||||
|
@ -574,6 +577,8 @@ $('body').on('click', '.order-btn', function(ev) {
|
|||
|
||||
if ($enableClipboard) $this->printClipboard($this->params['session']->getClipboard(), $previewer);
|
||||
|
||||
echo $this->callHook('leftContentPost');
|
||||
|
||||
echo "</div>\n";
|
||||
}
|
||||
echo "<div class=\"span".$RightColumnSpan."\">\n";
|
||||
|
|
Loading…
Reference in New Issue
Block a user