コード例 #1
0
ファイル: Recall.php プロジェクト: piotrazsko/sushi
 public function action_interesting()
 {
     $article = new Model_Article();
     $text = $article->get_text('interesting');
     $text = $text[0]['text'];
     $content = View::factory('/pages/interesting');
     $content->text = $text;
     $this->template->content = $content;
 }
コード例 #2
0
ファイル: Static.php プロジェクト: piotrazsko/sushi
 public function action_about()
 {
     $article = new Model_Article();
     $text = $article->get_text('about');
     $text = $text[0]['text'];
     $content = View::factory('/pages/about');
     $content->text = $text;
     //      $this->template->text = $text;
     $this->template->content = $content;
 }