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


PHP CConsoleCommand::__construct方法代码示例

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


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

示例1: __construct

 public function __construct($name, $runner)
 {
     parent::__construct($name, $runner);
     if ($this->_log == null) {
         $this->_log = new CronFileLogRoute('command_update');
     }
 }
开发者ID:hucongyang,项目名称:test,代码行数:7,代码来源:UpdateCommand.php

示例2: __construct

 /**
  * GenerateWorklistsCommand constructor.
  *
  * @param string                $name
  * @param CConsoleCommandRunner $runner
  * @param WorklistManager       $manager
  */
 public function __construct($name, $runner, $manager = null)
 {
     if (is_null($manager)) {
         $manager = new WorklistManager();
     }
     $this->manager = $manager;
     parent::__construct($name, $runner);
 }
开发者ID:openeyes,项目名称:openeyes,代码行数:15,代码来源:GenerateWorklistsCommand.php

示例3: __construct

 public function __construct($id, $module = null)
 {
     parent::__construct($id, $module);
     $this->product_model = new Product();
     $this->productType_model = new ProductType();
     $this->productPublish_model = new ProductPublish();
     $this->userProductBuy_model = new UserProductBuy();
     $this->buyLogs_model = new BuyLogs();
     $this->tradingRecord_model = new TradingRecord();
     $this->userInfo_model = new Userinfo();
 }
开发者ID:niujie123,项目名称:myself,代码行数:11,代码来源:BuyProCommand.php

示例4: __construct

 public function __construct()
 {
     $this->path = Yii::app()->params['hscic']['data']['path'];
     $this->tempPath = Yii::app()->params['hscic']['data']['temp_path'];
     if (!file_exists($this->path)) {
         mkdir($this->path, 0777, true);
     }
     if (!file_exists($this->tempPath)) {
         mkdir($this->tempPath, 0777, true);
     }
     $this->files = $this->mapFileConfig(static::$file_config);
     parent::__construct(null, null);
 }
开发者ID:openeyes,项目名称:openeyes,代码行数:13,代码来源:ProcessHscicDataCommand.php

示例5: __construct

 public function __construct($name, $runner)
 {
     //non conflicting alias
     $alias = md5(__DIR__);
     Yii::setPathOfAlias($alias, __DIR__);
     //configuring
     $configPath = Yii::getPathOfAlias($alias . '.configs');
     $config = new CConfiguration(array('alias' => $alias));
     $config->loadFromFile($configPath . '/stdConfig.php');
     //base config
     if ($this->config) {
         $config->loadFromFile($configPath . '/' . $this->config . '.php');
     }
     foreach ($config as $key => $val) {
         $this->{$key} = $val;
     }
     //do import
     Yii::import($alias . '.*', true);
     Yii::import($alias . '.iterators.*', true);
     //set translaitor
     Yii::app()->setComponent('docBlockMessage', Yii::createComponent($this->messageSource));
     parent::__construct($name, $runner);
 }
开发者ID:blindest,项目名称:Yii-CMS-2.0,代码行数:23,代码来源:DocBlockCommand.php

示例6: __construct

 public function __construct($name, $runner)
 {
     parent::__construct($name, $runner);
 }
开发者ID:mudiman,项目名称:yiirestintegrated,代码行数:4,代码来源:TestCommand.php

示例7: __construct

 public function __construct($name, $runner)
 {
     parent::__construct($name, $runner);
     $this->logCommand();
 }
开发者ID:wheatma,项目名称:react_study,代码行数:5,代码来源:BaseCommand.php

示例8: __construct

 public function __construct($name, $runner)
 {
     parent::__construct($name, $runner);
     $this->inputPath = realpath(dirname(__FILE__) . '/..') . '/data';
     $this->dictFile = realpath(dirname(__FILE__) . '/../../../../etc') . '/py.xdb';
 }
开发者ID:nash635,项目名称:xunsearch,代码行数:6,代码来源:PinyinCommand.php


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