예제 #1
0
파일: index.php 프로젝트: radiosilence/core
 public function index($args)
 {
     $view = new \Core\View();
     $this->load_locale("sample");
     $view->set("sample", L_SAMPLE);
     $view->show("sample");
 }
 /**
  * Save user session and render the final layout template
  */
 public function send()
 {
     //\Core\Session::save();
     headers_sent() or header('Content-Type: text/html; charset=utf-8');
     $layout = new \Core\View($this->template);
     $layout->set((array) $this);
     print $layout;
     $layout = NULL;
     if (config()->debug_mode) {
         print new \Core\View('System/Debug');
     }
 }