You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

26 lines
655 B

<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Content extends WB_Controller {
public function index($page="")
{
// Page가 지정되지 않았다면?
if(empty($page))
{
show_404();
exit;
}
// 레이아웃 & 뷰파일 설정
$this->theme = $this->site->get_layout();
if(! is_file( VIEWPATH . DIR_THEME . DIRECTORY_SEPARATOR . $this->theme . DIRECTORY_SEPARATOR . "content" . DIRECTORY_SEPARATOR . $page . ".php" ))
{
show_404();
exit;
}
$this->view = "content/" . $page;
}
}