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


PHP Controller::afterAction方法代码示例

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


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

示例1: afterAction

 public function afterAction($action, $result)
 {
     $result = parent::afterAction($action, $result);
     foreach ($this->_savedCommands as $targetClass => $args) {
         if (array_key_exists($targetClass, $this->_commands)) {
             $this->_commands[$targetClass] = $args + $this->_commands[$targetClass];
         } else {
             $this->_commands[$targetClass] = $args;
         }
     }
     file_put_contents($this->filename, Json::encode($this->_commands, \JSON_PRETTY_PRINT));
     return $result;
 }
开发者ID:ivan-chkv,项目名称:yii2-kladovka,代码行数:13,代码来源:GenerateController.php

示例2: afterAction

 /**
  * @inheritdoc
  */
 public function afterAction($action, $result)
 {
     //file_put_contents(\Yii::getAlias('@runtime/logs/last_ip'),  self::$ip. "\n");
     $this->showTime();
     return parent::afterAction($action, $result);
 }
开发者ID:nnrudakov,项目名称:glabs,代码行数:9,代码来源:GlabsController.php

示例3: afterAction

 /**
  * After action event
  *
  * @param \yii\base\Action $action
  * @param mixed $result
  *
  * @return mixed
  */
 public function afterAction($action, $result)
 {
     $result = parent::afterAction($action, $result);
     $this->stdout("Command `{$this->command}` finished at the " . Yii::$app->formatter->asDatetime(time()) . "\n", Console::FG_GREEN);
     return $result;
 }
开发者ID:yii2mod,项目名称:base,代码行数:14,代码来源:BaseController.php

示例4: afterAction

 public function afterAction($action, $result)
 {
     if (FALSE === array_search($action->id, $this->_exludeAction)) {
         //Should remove in stable versions, but nice little fallback just in case
         $this->showInput();
         //Two newlines B4 program exit
         if (!$this->preventDefault) {
             $this->printStatus();
         }
     }
     return parent::afterAction($action, $result);
 }
开发者ID:Humanized,项目名称:yii2-clihelpers,代码行数:12,代码来源:Controller.php


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