| 1 | <?php defined('BASEPATH') OR exit('No direct script access allowed'); |
||
| 3 | class About extends MY_Controller { |
||
| 4 | 2 | public function __construct() { |
|
| 5 | 2 | parent::__construct(); |
|
| 6 | 2 | } |
|
| 7 | |||
| 8 | 1 | public function index() : void { |
|
| 13 | |||
| 14 | 1 | public function terms() : void { |
|
| 15 | 1 | $this->header_data['title'] = 'Terms of Service'; |
|
| 16 | 1 | $this->header_data['page'] = 'terms'; |
|
| 17 | 1 | $this->_render_page('About/Terms'); |
|
| 18 | 1 | } |
|
| 19 | } |
||
| 20 |