Exemplo n.º 1
0
 /**
  * Returns the available tabs
  * 
  * @return array of tab 
  */
 public function getTabs()
 {
     $tabs = array();
     $tab = new tabBup(langBup::_('General'), $this->getCode());
     $tab->setView('optionTab');
     $tab->setSortOrder(-99);
     $tabs[] = $tab;
     return $tabs;
 }
Exemplo n.º 2
0
 public function getTabs()
 {
     $tabs = array();
     $tab = new tabBup(langBup::_('Templates'), $this->getCode());
     $tab->setView('templatesTab');
     $tab->setSortOrder(1);
     $tabs[] = $tab;
     return $tabs;
 }
Exemplo n.º 3
0
 public function getTabs()
 {
     $tabs = array();
     $tab = new tabBup(__('Templates', BUP_LANG_CODE), $this->getCode());
     $tab->setView('templatesTab');
     $tab->setSortOrder(1);
     $tabs[] = $tab;
     return $tabs;
 }
Exemplo n.º 4
0
 /**
  * Returns the available tabs
  * 
  * @return array of tab 
  */
 public function getTabs()
 {
     $tabs = array();
     $tab = new tabBup(langBup::_('Pages'), $this->getCode());
     $tab->setView('pagesTab');
     $tab->setSortOrder(2);
     $tab->setParent('templatesBup');
     $tab->setNestingLevel(1);
     $tabs[] = $tab;
     return $tabs;
 }