예제 #1
0
파일: RenderStr.php 프로젝트: 4app/zuniphp
 public function load()
 {
     ob_start();
     parent::load();
     $result = ob_get_contents();
     ob_end_clean();
     return $result;
 }
예제 #2
0
파일: RenderIf.php 프로젝트: 4app/zuniphp
 public function load()
 {
     if ($this->_if) {
         parent::load();
         return TRUE;
     }
     return NULL;
 }
예제 #3
0
 public function __construct($conf)
 {
     Conf::load($conf);
     Request::load();
     Render::load();
 }