コード例 #1
0
ファイル: json.php プロジェクト: tilitala/nForum
 public function __construct(&$controller)
 {
     parent::__construct($controller);
     if ($controller->html) {
         throw new AppViewException('wrong render type');
     }
 }
コード例 #2
0
ファイル: html.php プロジェクト: tilitala/nForum
 public function __construct(&$controller)
 {
     parent::__construct($controller);
     if (!$controller->html) {
         throw new AppViewException('Unknow Return Format');
     }
     require "Smarty.class.php";
     $this->smarty = new Smarty();
 }
コード例 #3
0
ファイル: class.view.php プロジェクト: sg4r3z/umvc
 public function __construct($resourceName)
 {
     parent::__construct($resourceName);
 }