Exemplo n.º 1
0
 public function init()
 {
     parent::init();
     $this->setImport(array('yeeki.components.*', 'application.modules.yeeki.modules.wiki.WikiModule', 'application.modules.yeeki.modules.wiki.controllers.*', 'application.modules.yeeki.modules.wiki.models.*', 'application.modules.yeeki.modules.wiki.*', 'application.modules.yeeki.modules.wiki.components.*'));
     if (!$this->editor) {
         $this->editor = Yii::app()->getModule('yupe')->editor;
     }
 }
Exemplo n.º 2
0
 public function init()
 {
     parent::init();
     $this->setImport(['application.modules.page.models.*', 'application.modules.page.components.widgets.*']);
     // Если у модуля не задан редактор - спросим у ядра
     if (!$this->editor) {
         $this->editor = Yii::app()->getModule('yupe')->editor;
     }
 }
Exemplo n.º 3
0
 public function init()
 {
     parent::init();
     $this->setImport(array('application.modules.dictionary.models.*'));
 }
Exemplo n.º 4
0
 /**
  *
  */
 public function init()
 {
     parent::init();
 }
Exemplo n.º 5
0
 /**
  *
  */
 public function init()
 {
     parent::init();
     $this->setImport(['gallery.models.*']);
 }
Exemplo n.º 6
0
 public function init()
 {
     parent::init();
     $this->setImport(array('application.modules.poll.models.*', 'application.modules.classroom.models.*'));
 }
 /**
  * Инициализация модуля, считывание настроек из базы данных и их кэширование
  *
  * @return void
  */
 public function init()
 {
     parent::init();
     $this->setImport(['teacher.models.*', 'teacher.components.*']);
 }
Exemplo n.º 8
0
 /**
  *
  */
 public function init()
 {
     $this->setImport(['application.modules.queue.models.*', 'application.modules.queue.components.*']);
     parent::init();
 }
Exemplo n.º 9
0
 public function init()
 {
     parent::init();
     $this->setImport(array('gallery.models.*'));
 }
Exemplo n.º 10
0
 /**
  *
  */
 public function init()
 {
     parent::init();
     $this->setImport(['application.modules.zendsearch.models.*', 'application.modules.zendsearch.components.*', 'application.modules.zendsearch.components.widgets.*']);
 }
Exemplo n.º 11
0
 /**
  *
  */
 public function init()
 {
     parent::init();
     $this->setImport(['application.modules.menu.models.*']);
 }
Exemplo n.º 12
0
 /**
  * Инициализация модуля, считывание настроек из базы данных и их кэширование
  *
  * @return void
  */
 public function init()
 {
     parent::init();
     $this->setImport(['listner.models.*', 'listner.components.*', 'branch.models.*']);
 }
Exemplo n.º 13
0
 /**
  * Инициализация модуля, считывание настроек из базы данных и их кэширование
  *
  * @return void
  */
 public function init()
 {
     parent::init();
     $this->setImport(['balance.models.*', 'balance.components.*']);
 }
Exemplo n.º 14
0
 public function init()
 {
     parent::init();
     $this->setImport(array('blog.models.*', 'blog.components.*', 'yupe.extensions.taggable.*'));
 }
Exemplo n.º 15
0
 /**
  * Инициализация модуля, считывание настроек из базы данных и их кэширование
  *
  * @return void
  */
 public function init()
 {
     parent::init();
     $this->setImport(['subject.models.*', 'subject.components.*']);
 }
Exemplo n.º 16
0
 /**
  *
  */
 public function init()
 {
     parent::init();
     $this->setImport(['contentblock.models.*']);
 }
Exemplo n.º 17
0
 /**
  * Инициализация модуля, считывание настроек из базы данных и их кэширование
  *
  * @return void
  */
 public function init()
 {
     parent::init();
     $this->setImport(['city.models.*', 'city.components.*']);
 }
Exemplo n.º 18
0
 /**
  * Метод инициализации модуля:
  *
  * @return nothing
  **/
 public function init()
 {
     $this->setImport(['mail.models.*', 'mail.components.*']);
     parent::init();
 }
Exemplo n.º 19
0
 public function init()
 {
     parent::init();
     $this->setImport(array('dictionary.models.*', 'dictionary.components.*'));
 }
Exemplo n.º 20
0
 public function beforeControllerAction($controller, $action)
 {
     if (parent::beforeControllerAction($controller, $action)) {
         // this method is called before any module controller action is performed
         // you may place customized code here
         return true;
     } else {
         return false;
     }
 }