예제 #1
0
파일: module_class.php 프로젝트: kuaa59/www
 public function __construct()
 {
     parent::__construct(new View(Config::DIR_TMPL));
 }
예제 #2
0
 /**
  * __construct function.
  * 
  * @access public
  * @param bool $loggingEnabled. (default: false)
  * @return void
  */
 public function __construct($loggingEnabled = false)
 {
     parent::__construct();
     $this->logging = $loggingEnabled;
     $this->tpl = new OutlineTpl('error');
 }