コード例 #1
0
ファイル: index.php プロジェクト: Dmytriiev/custom
 function __construct()
 {
     $books = new Books_model();
     $this->_variables = $books->get_all();
     $this->_template = "index.html";
 }
コード例 #2
0
ファイル: index.php プロジェクト: skvak/custom
 function output()
 {
     $books = new Books_model();
     $this->_variables = $books->get_all();
     include $this->_template;
 }