Files
WrenchBoradWeb/www/application/controllers/Terms.php
T
2019-05-31 11:26:35 -04:00

21 lines
587 B
PHP

<?php
class Terms extends WRB_Controller {
public function index() {
$data['title'] = "Terms"; // Capitalize the first letter
$data['page_title'] = "Terms & Conditions";
$data['page_key'] = 'WRB_MAIN_SIGNUP_TERM';
$data['txt_detail'] = $this->readFixedText($data['page_key']);
$this->load->view('templates/header_boxed', $data);
$this->load->view('users/view_terms', $data);
$this->load->view('users/view_external_footer');
// $this->load->view('templates/footer_boxed', $data);
}
}