コード例 #1
0
ファイル: Controller.php プロジェクト: jfkz/aquarel-cms
 public function __construct()
 {
     parent::__construct();
     $this->repUser = $this->em->getRepository('Users\\Entities\\User');
     $this->repUserGroup = $this->em->getRepository('Users\\Entities\\UserGroup');
     $this->repUserPermission = $this->em->getRepository('Users\\Entities\\UserPermission');
 }
コード例 #2
0
ファイル: Controller.php プロジェクト: jfkz/aquarel-cms
 public function __construct($event = null)
 {
     parent::__construct();
     $this->repAction = $this->em->getRepository('Events\\Entities\\Action');
     $this->repEvent = $this->em->getRepository('Events\\Entities\\Event');
     $this->repMonitor = $this->em->getRepository('Events\\Entities\\Monitor');
 }
コード例 #3
0
ファイル: Controller.php プロジェクト: jfkz/aquarel-cms
 public function __construct()
 {
     parent::__construct();
     $this->repDataType = $this->em->getRepository('Data\\Entities\\DataType');
     $this->repDataField = $this->em->getRepository('Data\\Entities\\DataField');
     $this->repDataTemplate = $this->em->getRepository('Data\\Entities\\DataTemplate');
     $live->_theme_control = true;
 }
コード例 #4
0
ファイル: Controller.php プロジェクト: jfkz/aquarel-cms
 public function __construct()
 {
     parent::__construct();
     $this->repMail = $this->em->getrepository('Mail\\Entities\\Mail');
 }
コード例 #5
0
ファイル: Controller.php プロジェクト: jfkz/aquarel-cms
 public function __construct()
 {
     parent::__construct();
     $this->repSettings = $this->em->getRepository('Settings\\Entities\\Setting');
 }
コード例 #6
0
ファイル: Controller.php プロジェクト: jfkz/aquarel-cms
 public function __construct()
 {
     parent::__construct();
 }
コード例 #7
0
ファイル: Controller.php プロジェクト: jfkz/aquarel-cms
 public function __construct()
 {
     parent::__construct();
     $this->repWysiwyg = $this->em->getRepository('Wysiwygs\\Entities\\Wysiwyg');
 }
コード例 #8
0
ファイル: Controller.php プロジェクト: jfkz/aquarel-cms
 public function __construct()
 {
     parent::__construct();
     $this->rep = $this->em->getrepository('Blocks\\Entities\\Block');
 }
コード例 #9
0
ファイル: Controller.php プロジェクト: jfkz/aquarel-cms
 public function __construct()
 {
     parent::__construct();
     $this->repPage = $this->em->getRepository('Pages\\Entities\\Page');
 }
コード例 #10
0
ファイル: Controller.php プロジェクト: jfkz/aquarel-cms
 public function __construct()
 {
     parent::__construct();
     $this->repMenu = $this->em->getRepository('Menu\\Entities\\Menu');
 }
コード例 #11
0
ファイル: Controller.php プロジェクト: jfkz/aquarel-cms
 public function __construct()
 {
     parent::__construct();
     $live = \Control\Live::getInstance();
     $live->_theme_control = true;
 }