1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- /**
- * FecShop file.
- *
- * @link http://www.fecshop.com/
- * @copyright Copyright (c) 2016 FecShop Software LLC
- * @license http://www.fecshop.com/license/
- */
- ?>
- <?php
- namespace fecshop\app\console\modules;
- use fec\controllers\FecController;
- use Yii;
- /**
- * @author Terry Zhao <2358269014@qq.com>
- * @since 1.0
- */
- class ConsoleController extends FecController
- {
- public $blockNamespace;
- /**
- * get current block
- * you can change $this->blockNamespace.
- */
- public function getBlock($blockName = '')
- {
- if (!$blockName) {
- $blockName = $this->action->id;
- }
- if (!$this->blockNamespace) {
- $this->blockNamespace = Yii::$app->controller->module->blockNamespace;
- }
- if (!$this->blockNamespace) {
- throw new \yii\web\HttpException(406, 'blockNamespace is empty , you should config it in module->blockNamespace or controller blockNamespace ');
- }
- $relativeFile = '\\'.$this->blockNamespace;
- $relativeFile .= '\\'.$this->id.'\\'.ucfirst($blockName);
- //查找是否在rewriteMap中存在重写
- $relativeFile = Yii::mapGetName($relativeFile);
-
- return new $relativeFile();
- }
- }
|