Commit 98bd4041 by Qiang Xue

adjusted calling sequence within init().

parent 5bf7ed94
...@@ -168,16 +168,18 @@ abstract class Module extends Component ...@@ -168,16 +168,18 @@ abstract class Module extends Component
* This method is called after the module is created and initialized with property values * This method is called after the module is created and initialized with property values
* given in configuration. The default implementation will create a path alias using the module [[id]] * given in configuration. The default implementation will create a path alias using the module [[id]]
* and then call [[preloadComponents()]] to load components that are declared in [[preload]]. * and then call [[preloadComponents()]] to load components that are declared in [[preload]].
*
* If you override this method, please make sure you call the parent implementation.
*/ */
public function init() public function init()
{ {
$this->preloadComponents();
if ($this->controllerNamespace === null) { if ($this->controllerNamespace === null) {
$class = get_class($this); $class = get_class($this);
if (($pos = strrpos($class, '\\')) !== false) { if (($pos = strrpos($class, '\\')) !== false) {
$this->controllerNamespace = substr($class, 0, $pos) . '\\controllers'; $this->controllerNamespace = substr($class, 0, $pos) . '\\controllers';
} }
} }
$this->preloadComponents();
} }
/** /**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment