Exemplo n.º 1
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;
 }