예제 #1
0
 /**
  * Initialization controller
  *
  */
 public function init()
 {
     parent::init();
     if ($this->_authenticated) {
         $this->_breadcrumbs->addStep($this->Translate('Ваш профиль'), $this->getUrl(null, 'account'));
     }
 }
예제 #2
0
 /**
  * Initialization controller
  *
  */
 public function init()
 {
     parent::init();
     // Получим название таблицы
     $params = $this->_request->getParams();
     if (isset($params['table'])) {
         $table = $params['table'];
         $arrTable = explode('.', $table);
         $this->_table = $arrTable[1];
     }
 }
예제 #3
0
 /**
  * Initialization controller
  *
  */
 public function init()
 {
     parent::init();
     $this->_breadcrumbs->addStep($this->Translate('Конфигурирование'), $this->getUrl(null, 'config', 'admin'));
 }
예제 #4
0
 /**
  * Initialization controller
  *
  */
 public function init()
 {
     parent::init();
 }
예제 #5
0
 /**
  * Initialization controller
  *
  */
 public function init()
 {
     parent::init();
     $this->_breadcrumbs->addStep($this->Translate('Инструменты'), $this->getUrl(null, 'tools', 'admin'));
 }
예제 #6
0
 /**
  * Initialization controller
  *
  * @return void
  */
 public function init()
 {
     parent::init();
     $this->_flashMessenger = $this->_helper->getHelper('FlashMessenger');
     $this->initView();
 }
예제 #7
0
 /**
  * Initialization controller
  *
  */
 public function init()
 {
     parent::init();
     $this->_breadcrumbs->addStep($this->Translate('Ваш профиль'), $this->getUrl(null, 'account'));
     $this->_breadcrumbs->addStep($this->Translate('Управление блогом'), $this->getUrl(null, 'blogmanager'));
 }