22 lines
478 B
PHP
22 lines
478 B
PHP
|
<?php
|
||
|
|
||
|
//This controller only manipulates the pages
|
||
|
class Pages extends CI_Controller {
|
||
|
|
||
|
public function view($page = 'home')
|
||
|
{
|
||
|
if(!file_exists(APPPATH.'views/pages/'.$page.'.php')){
|
||
|
show_404();
|
||
|
}
|
||
|
|
||
|
//storing the title of the page
|
||
|
$data['title'] = ucfirst($page);
|
||
|
|
||
|
$this->load->view('templates/header');
|
||
|
$this->load->view('pages/'.$page, $data);
|
||
|
$this->load->view('templates/footer');
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|