学习yii2.0框架阅读代码(十七)

vendor/yiisoft/yii2/base/Module.

模块类

每个模块都有一个继承yii\base\Module的模块类,该类文件直接放在模块的yii\base\Module::basePath目录下, 并且能被自动加载。当一个模块被访问,和应用主题实例类似会创建该模块类唯一实例,模块实例用来帮模块内代码共享数据和组件

class Module extends ServiceLocator
{
    /**
     * @event 在执行ActionEvent方法时触发事件
     * 你可以设置[[ActionEvent:isValid]]是错误的取消操作执行。.
     */
    const EVENT_BEFORE_ACTION = ‘beforeAction‘;

    const EVENT_AFTER_ACTION = ‘afterAction‘;

    /**
     * @var array custom module parameters (name => value).
     */
    public $params = [];
    /**
     * @var 控制器ID
     */
    public $id;
    /**
     * @var 所属模块
     */
    public $module;
    /**
     * @var string|boolean the layout that should be applied for views within this module. This refers to a view name
     * relative to [[layoutPath]]. If this is not set, it means the layout value of the [[module|parent module]]
     * will be taken. If this is false, layout will be disabled within this module.
     */
    public $layout;
    /**
     *  @var 数组从控制器ID映射到控制器配置
     * 每一个名称-值对将指定一个控制器的配置.
     * 一个控制器配置可以是一个字符串或一个数组
     * 如果是前者,字符串应该是控制器的完全限定类名.
     * 如果是后者,数组元素必须包含一个“类”
     * the controller‘s fully qualified class name, and the rest of the name-value pairs
     * 例子,
     *
     * ~~~
     * [
     *   ‘account‘ => ‘app\controllers\UserController‘,
     *   ‘article‘ => [
     *      ‘class‘ => ‘app\controllers\PostController‘,
     *      ‘pageTitle‘ => ‘something new‘,
     *   ],
     * ]
     * ~~~
     */
    public $controllerMap = [];
    /**
     * @var控制器类的字符串名称空间.
     * 这个名称空间通过将控制器将用于负载控制器类
     * class name.
     *
     * If not set, it will use the `controllers` sub-namespace under the namespace of this module.
     * For example, if the namespace of this module is "foo\bar", then the default
     * controller namespace would be "foo\bar\controllers".
     *
     * See also the [guide section on autoloading](guide:concept-autoloading) to learn more about
     * defining namespaces and how classes are loaded.
     */
    public $controllerNamespace;
    /**
     * @var 字符串的默认路由模块。默认为‘default‘.
     * 子模块ID,控制器的路线可能由ID,ID和/或行动.
     * For example, `help`, `post/create`, `admin/post/create`.
     * If action ID is not given, it will take the default value as specified in
     * [[Controller::defaultAction]].
     */
    public $defaultRoute = ‘default‘;

    /**
     * @var 字符串模块的根目录.
     */
    private $_basePath;
    /**
     * @var 字符串模块的根目录
     */
    private $_viewPath;
    /**
     * @var 字符串模块的根目录.
     */
    private $_layoutPath;
    /**
     * @var 这个模块所属的子模块
     */
    private $_modules = [];

    /**
     * 定义一个构造函数.
     * @param string $id the ID of this module
     * @param Module $parent the parent module (if any)
     * @param array $config name-value pairs that will be used to initialize the object properties
     */
    public function __construct($id, $parent = null, $config = [])
    {
        $this->id = $id;
        $this->module = $parent;
        parent::__construct($config);
    }

    /**
     * 返回当前请求的这个模块类的实例
     * If the module class is not currently requested, null will be returned.
     * This method is provided so that you access the module instance from anywhere within the module.
     * @return static|null the currently requested instance of this module class, or null if the module class is not requested.
     */
    public static function getInstance()
    {
        $class = get_called_class();
        return isset(Yii::$app->loadedModules[$class]) ? Yii::$app->loadedModules[$class] : null;
    }

    /**
     * 设置当前请求这个模块类的实例.
     * @param Module|null $instance the currently requested instance of this module class.
     * If it is null, the instance of the calling class will be removed, if any.
     */
    public static function setInstance($instance)
    {
        // get_called_class和get_class获取的值都是带namespace的
        if ($instance === null) {
            // 如果实例不存在,就将其从$app的loadedModules移出掉
            unset(Yii::$app->loadedModules[get_called_class()]);
        } else {
            // 如果实例存在,就将其加入到$app的loadedModules里
            Yii::$app->loadedModules[get_class($instance)] = $instance;
        }
    }

    /**
     * 初始化模块.
     *
     * 调用此方法后,模块与属性值创建并初始化
     * 在配置。的默认实现将初始化[[controllerNamespace]]
     * if it is not set.
     *
     * If you override this method, please make sure you call the parent implementation.
     */

    public function init()
    {
        //取出控制器的命名空间,也可以理解为路径
        if ($this->controllerNamespace === null) {
            $class = get_class($this);
            if (($pos = strrpos($class, ‘\\‘)) !== false) {
                $this->controllerNamespace = substr($class, 0, $pos) . ‘\\controllers‘;
            }
        }
    }
时间: 2024-10-13 22:22:55

学习yii2.0框架阅读代码(十七)的相关文章

学习yii2.0框架阅读代码(四)

阅读 BaseYii Yii的辅助类核心框架 别名相关(续) //用一个真实的路径注册一个别名 public static function setAlias($alias, $path) { if (strncmp($alias, '@', 1)) { // 如果不是以 @ 开头,就将 @ 拼到开头 $alias = '@' . $alias; } // 获取 / 在 $alias 中首次出现的位置 $pos = strpos($alias, '/'); // 如果 / 不存在,$root 就

学习yii2.0框架阅读代码(三)

阅读 BaseYii Yii的辅助类核心框架 别名相关 <?php namespace yii; //定义命名空间,昨天修改了一天.. use yii\base\InvalidConfigException; use yii\base\InvalidParamException; use yii\base\UnknownClassException; use yii\log\Logger; use yii\di\Container; //获取应用程序开始时间 defined('YII_BEGIN

学习yii2.0框架阅读代码(十一)

vendor/yiisoft/yii2/base/Module. php(续) /** * 该方法解析指定的路线和创建相应的子模块(s),控制器和行动 * This method parses the specified route and creates the corresponding child module(s), controller and action * instances. It then calls [[Controller::runAction()]] to run th

学习yii2.0框架阅读代码(十五)

行为是 yii\base\Behavior 或其子类的实例.行为,也称为mixins,可以无须改变类继承关系即可增强一个已有的 yii\base\Component 类功能.当行为附加到组件后,它将“注入”它的方法和属性到组件,然后可以像访问组件内定义的方法和属性一样访问它们.此外,行为通过组件能响应被触发的事件,从而自定义或调整组件正常执行的代码. <?php namespace yii\base; /** * 行为是所有行为类的基类. * * 一个行为可以用来增强现有的功能组件,无需修改其代

学习yii2.0框架阅读代码(七)

vendor/yiisoft/yii2/base/Model.php <?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace yii\base; use Yii; use ArrayAccess; use ArrayObject; use A

学习yii2.0框架阅读代码(六)

vendor/yiisoft/yii2/base/ArrayableTrait. <?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace yii\base; use Yii; use yii\helpers\ArrayHelper; use

学习yii2.0框架阅读代码(二十)

vendor/yiisoft/yii2/base/Module. php(续) /** * 新建一个控制器实例基于给定的路线. * * 路线应该是相对于这个模块.该方法实现了以下算法 * to resolve the given route: * * 1. If the route is empty, use [[defaultRoute]]; * 2. If the first segment of the route is a valid module ID as declared in [

学习yii2.0框架阅读代码(二十一)

vendor/yiisoft/yii2/base/Module.php(完) /** * 创建一个控制器基于给定控制器ID. * * The controller ID is relative to this module. The controller class * should be namespaced under [[controllerNamespace]]. * * Note that this method does not check [[modules]] or [[cont

学习yii2.0框架阅读代码(十九)

vendor/yiisoft/yii2/base/Module. php(续) /** * 检索指定的子模块ID. * 这种方法支持检索两个子模块和子模块. * @param string $id module ID (case-sensitive). To retrieve grand child modules, * use ID path relative to this module (e.g. `admin/content`). * @param boolean $load wheth