예제 #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);
 }