コード例 #1
0
ファイル: classes.php プロジェクト: joegeck/cerb4
 function __construct($manifest)
 {
     parent::__construct($manifest);
     // Internal Routing
     // [TODO] Cache the code to extension lookup -- silly to go to DB every time for this
     $this->tools = DAO_CommunityTool::getList();
     foreach ($this->tools as $idx => $tool) {
         $this->hash[$tool->code] =& $this->tools[$idx];
     }
 }
コード例 #2
0
ファイル: cron.php プロジェクト: rmiddle/cerb4
 function __construct($manifest)
 {
     parent::__construct($manifest);
 }
コード例 #3
0
ファイル: internal.php プロジェクト: rmiddle/cerb4
 function __construct($manifest)
 {
     $this->_TPL_PATH = dirname(dirname(dirname(__FILE__))) . '/templates/';
     parent::__construct($manifest);
 }
コード例 #4
0
ファイル: App.php プロジェクト: rmiddle/cerb4
 function __construct($manifest)
 {
     $this->_CORE_TPL_PATH = DEVBLOCKS_PLUGIN_PATH . 'cerberusweb.core/templates/';
     $this->_TPL_PATH = dirname(dirname(__FILE__)) . '/templates/';
     parent::__construct($manifest);
 }
コード例 #5
0
ファイル: App.php プロジェクト: Hildy/cerb5
 function __construct($manifest)
 {
     parent::__construct($manifest);
     $this->plugin_path = dirname(dirname(__FILE__)) . '/';
 }
コード例 #6
0
ファイル: App.php プロジェクト: rmiddle/cerb4
 function __construct($manifest)
 {
     parent::__construct($manifest);
     $this->tpl_path = dirname(dirname(__FILE__)) . '/templates';
 }
コード例 #7
0
ファイル: Rest.php プロジェクト: sluther/portsensor
 function __construct($manifest)
 {
     parent::__construct($manifest);
     $router = DevblocksPlatform::getRoutingService();
     $router->addRoute('webapi', 'core.controller.rest');
 }
コード例 #8
0
ファイル: App.php プロジェクト: Hildy/cerb5
 function __construct($manifest)
 {
     $this->_CORE_TPL_PATH = APP_PATH . '/features/cerberusweb.core/templates/';
     $this->_TPL_PATH = dirname(dirname(__FILE__)) . '/templates/';
     parent::__construct($manifest);
 }