Esempio n. 1
0
 /**
  * Allow $module->othermodule syntax
  *
  * Overrides the __get() method so that modules can be accessed using
  * $this->themodule.  If you want to override __get(), you can still
  * get this behaviour by calling CSF_Module::__get($name).
  *
  * @param   string  $name       The module name
  * @return  mixed
  */
 public function __get($name)
 {
     return CSF::get($name);
 }