コード例 #1
0
ファイル: View.php プロジェクト: ChiperSoft/phPit
 /**
  * Renders the view directly to the viewer
  *
  * @return string
  */
 public function output()
 {
     extract($this->export());
     include Path::View($this->view_name);
 }
コード例 #2
0
ファイル: Path.php プロジェクト: ChiperSoft/phPit
 public static function Layout($name)
 {
     return Path::View($name);
 }