Ejemplo n.º 1
0
 /**
  * STTab_Theme() - Constructor
  */
 function __construct($root)
 {
     parent::__construct($root);
 }
Ejemplo n.º 2
0
 /**
  * A "project tab" is a link towards a project service.
  * The parent method getProjectTabs() generates an array of these links.
  * However, the first element is a link to the forge homepage and we don't
  * want it in this theme.
  *
  */
 private function getProjectTabs($params, $project)
 {
     $tabs = parent::_getProjectTabs($params['toptab'], $project);
     array_shift($tabs);
     return $tabs;
 }
Ejemplo n.º 3
0
 /**
  * CodexSTN_Theme() - Constructor
  */
 function __construct($root)
 {
     // Parent constructor
     parent::__construct($root);
 }