Пример #1
0
 public function __construct($name)
 {
     parent::__construct();
     $this->name = $name;
     if (!$this->hasData('template')) {
         $this->setTemplate('wee_developertoolbar/tabcontainer.phtml');
     }
 }
Пример #2
0
 public function __construct($name, $label = '')
 {
     parent::__construct();
     $this->_name = $name;
     if ($label) {
         $this->_label = $label;
     }
     if (!$this->hasData('template')) {
         $this->setTemplate('wee_developertoolbar/item.phtml');
     }
 }
Пример #3
0
 public function __construct($name, $label)
 {
     parent::__construct();
     $this->_name = $name;
     $this->_label = $label;
 }