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


PHP yii::createObject方法代码示例

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


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

示例1: getService

 /**
  * @return mixed
  * @throws \yii\base\InvalidConfigException
  */
 public static function getService()
 {
     $class_name = static::className();
     if (!isset(static::$_services[$class_name]) || !static::$_services[$class_name] instanceof Service) {
         static::$_services[$class_name] = \yii::createObject($class_name);
     }
     return static::$_services[$class_name];
 }
开发者ID:great-all,项目名称:zaizaitvServer,代码行数:12,代码来源:Service.php

示例2: _init

 /**
  * 自定义初始化组件方法
  * @throws InvalidConfigException
  */
 private function _init()
 {
     if (!static::$mobCompenent instanceof \common\compenents\MobileCode) {
         //注册mob组件
         $_conf = ['class' => \common\compenents\MobileCode::className()];
         $_conf = array_merge($_conf, \common\helpers\CommonHelper::loadConfig('mobConf'));
         static::$mobCompenent = \yii::createObject($_conf);
     }
 }
开发者ID:great-all,项目名称:zaizaitvServer,代码行数:13,代码来源:VerifyCodeService.php

示例3: init

 /**
  * @inheritdoc
  */
 public function init()
 {
     parent::init();
     if (is_string($this->redis)) {
         $this->redis = \yii::$app->get($this->redis);
     }
     if (is_array($this->redis)) {
         $this->redis = yii::createObject($this->redis);
     }
     if ($this->redis === null) {
         throw new InvalidConfigException('The "redis" property must be set.');
     }
 }
开发者ID:great-all,项目名称:yii2-queue,代码行数:16,代码来源:RedisQueue.php

示例4: getContainer

 /**
  * Get dropdown container
  *
  * @return Container
  */
 public function getContainer()
 {
     $container = \yii::createObject(array_merge(['class' => Container::className()], $this->containerOptions, ['owner' => $this]));
     return $container;
 }
开发者ID:execut,项目名称:yii2-dropdown-content-input,代码行数:10,代码来源:DropdownContent.php

示例5: OnAfterLogin

 /**
  * 登陆事件
  * @param int $user
  * @param string $client_type
  * @throws \yii\base\InvalidConfigException
  */
 private function OnAfterLogin($user, $client_type = NULL)
 {
     $_config = ['class' => '\\backend\\events\\LoginEvent', 'userId' => $user->id, 'loginTime' => time(), 'loginIp' => \yii::$app->getRequest()->userIP, 'clientType' => $client_type];
     $user_event = \yii::createObject($_config);
     $this->trigger(static::AFTER_LOGIN_EVENT, $user_event);
 }
开发者ID:great-all,项目名称:zaizaitvServer,代码行数:12,代码来源:UserService.php


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