Modules
Note: This section is under development.
Modules are self-contained software units that consist of models, views, controllers, and other supporting components. End users can access the controllers of a module when it is installed in application. Modules differ from applications in that the former cannot be deployed alone and must reside within the latter.
Creating Modules
A module is organized as a directory which is called the [[yii\base\Module::basePath|base path]] of the module. The content in this directory is like the following:
forum/
Module.php the module class file
controllers/ containing controller class files
DefaultController.php the default controller class file
models/ containing model class files
views/ containing controller view and layout files
layouts/ containing layout view files
default/ containing view files for DefaultController
index.php the index view file
As you can see, within the module's [[yii\base\Module::basePath|base path]], you can create sub-directories,
such as controllers
, models
, views
, to hold controllers, models, views that belong to the module.
Module Classes
Each module should have a module class which extends from [[yii\base\Module]] and is located directly under the module's [[yii\base\Module::basePath|base path]]. When a module is being accessed, a single instance of the corresponding module class will be created and made accessible by the code within the module. Like application instances, module instances are mainly used to share data and components for code within modules.
The following is an example of a module class:
namespace app\modules\forum;
class Module extends \yii\base\Module
{
public function init()
{
parent::init();
$this->params['foo'] = 'bar';
// ... other initialization code ...
}
}
If the code in init()
deals with a lot of module property initialization, you may also save them in terms
of a configuration and load it with the following code in init()
:
public function init()
{
parent::init();
// initialize the module with the configuration loaded from config.php
\Yii::configure($this, require(__DIR__ . '/config.php'));
}
where the configuration file config.php
may contain the following content, similar to that in an
application configuration.
<?php
return [
'components' => [
// list of component configurations
],
'params' => [
// list of parameters
],
];
Note: Make sure that module classes are named in a way such that they are autoloadable.
Controllers in Modules
You may create a module class
Like application instances are used to The module class serves as the central place for storing information shared among the module code. For example, we can use [CWebModule::params] to store module parameters, and use [CWebModule::components] to share application components at the module level.
Views in Modules
Using Modules
To use a module, first place the module directory under modules
of the application base directory. Then declare the module ID in the [modules|CWebApplication::modules] property of the application. For example, in order to use the above forum
module, we can use the following application configuration:
[php]
return array(
......
'modules'=>array('forum',...),
......
);
A module can also be configured with initial property values. The usage is very similar to configuring application components. For example, the forum
module may have a property named postPerPage
in its module class which can be configured in the application configuration as follows:
[php]
return array(
......
'modules'=>array(
'forum'=>array(
'postPerPage'=>20,
),
),
......
);
The module instance may be accessed via the [module|CController::module] property of the currently active controller. Through the module instance, we can then access information that are shared at the module level. For example, in order to access the above postPerPage
information, we can use the following expression:
[php]
$postPerPage=Yii::app()->controller->module->postPerPage;
// or the following if $this refers to the controller instance
// $postPerPage=$this->module->postPerPage;
A controller action in a module can be accessed using the route moduleID/controllerID/actionID
. For example, assuming the above forum
module has a controller named PostController
, we can use the route forum/post/create
to refer to the create
action in this controller. The corresponding URL for this route would be http://www.example.com/index.php?r=forum/post/create
.
Tip: If a controller is in a sub-directory of
controllers
, we can still use the above route format. For example, assumingPostController
is underforum/controllers/admin
, we can refer to thecreate
action usingforum/admin/post/create
.
Nested Modules
Modules can be nested in unlimited levels. That is, a module can contain another module which can contain yet another module. We call the former parent module while the latter child module. Child modules must be declared in the [modules|CWebModule::modules] property of their parent module, like we declare modules in the application configuration shown as above.
To access a controller action in a child module, we should use the route parentModuleID/childModuleID/controllerID/actionID
.
Best Practices
Users can access the controllers in a module like they do with normal application controllers.
Modules are useful in several scenarios. For a large-scale application, we may divide it into several modules, each being developed and maintained separately. Some commonly used features, such as user management, comment management, may be developed in terms of modules so that they can be reused easily in future projects.