Exemplo n.º 1
0
 public function gethead()
 {
     $result = parent::gethead();
     $template = ttemplate::i();
     $template->ltoptions['idpost'] = $this->idget();
     $template->ltoptions['lang'] = litepublisher::$options->language;
     $result .= $template->getready('$("#tabs").tabs({ beforeLoad: litepubl.uibefore});');
     return $result . tajaxmenueditor::i()->gethead();
 }
 public function gethead()
 {
     $result = parent::gethead();
     $template = ttemplate::i();
     $template->ltoptions['idpost'] = $this->idget();
     $result .= $template->getjavascript($template->jsmerger_posteditor);
     if ($this->isauthor && ($h = tauthor_rights::i()->gethead())) {
         $result .= $h;
     }
     return $result;
 }
Exemplo n.º 3
0
 public function gethead()
 {
     $result = parent::gethead();
     if (!empty($_GET['plugin'])) {
         $name = $_GET['plugin'];
         if (in_array($name, $this->names)) {
             if ($admin = $this->getadminplugin($name)) {
                 if (method_exists($admin, 'gethead')) {
                     $result .= $admin->gethead();
                 }
             }
         }
     }
     return $result;
 }
Exemplo n.º 4
0
 public function gethead()
 {
     return parent::gethead() . tuitabs::gethead();
 }
 public function gethead()
 {
     $result = parent::gethead();
     $result .= ttemplate::i()->getjavascript('/js/litepublisher/tablecolumns.min.js');
     return $result;
 }