예제 #1
0
파일: page.php 프로젝트: uzura8/flockbird
 /**
  * Action detail
  * 
  * @access  public
  * @params  integer
  * @return  Response
  */
 public function action_detail($slug = null)
 {
     $content_page = Model_ContentPage::check_authority4unique_key('slug', $slug);
     $this->check_browse_authority(\Site_Util::convert_is_secure2public_flag($content_page->is_secure));
     $this->set_title_and_breadcrumbs($content_page->title);
     $this->template->content = \View::forge('page/detail', array('content_page' => $content_page));
     if (Site_Util::check_editor_enabled()) {
         $this->template->content->set_safe('html_body', $content_page->body);
     }
 }