コード例 #1
0
ファイル: View.php プロジェクト: prigazzi/php-viewmodels
 public function __construct($template, Model $product)
 {
     parent::__construct($template);
     $this->model = $product;
 }
コード例 #2
0
 public function __construct($template = null)
 {
     $template = $template ? $template : __DIR__ . "/../templates/pagination.tpl";
     parent::__construct($template);
 }