コード例 #1
0
ファイル: Widget.php プロジェクト: skipperbent/pecee
 public function __construct()
 {
     parent::__construct();
     debug('START WIDGET: ' . static::class);
     $this->setTemplate('Default.php');
     $this->setContentTemplate($this->getTemplatePath());
     $this->_form = new Form();
 }
コード例 #2
0
ファイル: ControllerBase.php プロジェクト: skipperbent/pecee
 public function __construct()
 {
     debug('START CONTROLLER ' . get_class($this));
     parent::__construct();
     $this->_messages->clear();
 }