当前位置: 首页>>代码示例>>PHP>>正文


PHP CommonController::init方法代码示例

本文整理汇总了PHP中CommonController::init方法的典型用法代码示例。如果您正苦于以下问题:PHP CommonController::init方法的具体用法?PHP CommonController::init怎么用?PHP CommonController::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CommonController的用法示例。


在下文中一共展示了CommonController::init方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: init

 /**
  * {@inheritDoc}
  */
 protected function init()
 {
     if ($languages = $this->_getCache(0, MODULE_NAME . DS . LANG . DS . 'comments', false, LANG_PATH)) {
         L($languages);
     }
     parent::init();
 }
开发者ID:yunsite,项目名称:yablog,代码行数:10,代码来源:Guestbook.class.php

示例2: init

 protected function init()
 {
     parent::init();
     $this->_cursorPath = "House_Updown_HouseLogFixedV2";
     $options = $this->getOptions();
     if (isset($options['city'])) {
         $this->_city = explode(',', $options['city']);
         $this->_cursorPath .= "-" . $options['city'];
     }
     if (isset($options['mod'])) {
         $this->_mod = explode(',', $options['mod']);
         $this->_cursorPath .= "-" . $options['mod'];
     }
 }
开发者ID:emilymwang8,项目名称:ajk-broker,代码行数:14,代码来源:HouseLogFixedV2.php

示例3: init

 public function init()
 {
     parent::init();
     $currentRequest = '/' . strtolower(implode('/', [$this->_request->module, $this->_request->controller, $this->_request->action]));
     $this->getView()->currentRequest = $currentRequest;
     if ($this->checkAuthorization && $this->userInfo) {
         $rbacManage = \Core\ServiceLocator::getInstance()->get('rbacManage');
         if (!$rbacManage->isAdmin($this->userInfo['name'])) {
             $authInfo = $rbacManage->checkAuthorization($this->userInfo['id'], $currentRequest);
             if ($authInfo == false) {
                 throw new \Exception('没有节点访问权限');
             }
         }
     }
 }
开发者ID:loncool,项目名称:yaf-admin,代码行数:15,代码来源:AdminCommon.php

示例4: init

 protected function init()
 {
     parent::init();
     if (!file_exists($this->_cursorFile)) {
         if (false === file_put_contents($this->_cursorFile, 0)) {
             $this->logMsg(sprintf('写入游标失败。请检查目录的权限。游标文件:%s', $this->_cursorFile));
             exit;
         }
         return;
     }
     if (!is_readable($this->_cursorFile)) {
         $this->logMsg(sprintf('游标文件:%s 不可读,请检查文件权限。', $this->_cursorFile));
         exit;
     }
     if (!is_writable($this->_cursorFile)) {
         $this->logMsg(sprintf('游标文件:%s 不可写,请检查文件权限。', $this->_cursorFile));
         exit;
     }
     file_put_contents($this->_doneFile, '');
     $this->_startId = intval(file_get_contents($this->_cursorFile));
 }
开发者ID:emilymwang8,项目名称:ajk-broker,代码行数:21,代码来源:EsfClickPriceRepair.php

示例5: init

 function init()
 {
     parent::init();
     $app = Yii::app();
     $app->sourceLanguage = 'xx';
     if (isset($_POST['_lang'])) {
         $app->language = $_POST['_lang'];
         $app->session['_lang'] = $app->language;
     }
     if (isset($_GET['_lang'])) {
         $app->language = $_GET['_lang'];
         $app->session['_lang'] = $app->language;
     } else {
         if (isset($app->session['_lang'])) {
             $app->language = $app->session['_lang'];
         } else {
             $app->language = 'es_mx';
             // default to spanish / mexico
         }
     }
 }
开发者ID:LumbaJack,项目名称:Mercado-BTX,代码行数:21,代码来源:FrontendController.php

示例6: init

 /**
  * {@inheritDoc}
  */
 protected function init()
 {
     require CORE_PATH . 'functions/dir.php';
     parent::init();
 }
开发者ID:yunsite,项目名称:yablog,代码行数:8,代码来源:Filelog.class.php

示例7: init

 public function init()
 {
     parent::init();
     $this->auth = new Service\user\DbUserAuth();
 }
开发者ID:loncool,项目名称:yaf-admin,代码行数:5,代码来源:Login.php


注:本文中的CommonController::init方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。