SHOW:
|
|
- or go back to the newest paste.
| 1 | // ADMIN | |
| 2 | <?php | |
| 3 | function login() { //
| |
| 4 | $this->init(); | |
| 5 | $data['title'] = $this->i18n->_('login:title');
| |
| 6 | $data['description'] = $this->i18n->_('login:description');
| |
| 7 | $data['author'] = $this->i18n->_('login:author');
| |
| 8 | ||
| 9 | $this->load->view('templates/content');
| |
| 10 | } | |
| 11 | ||
| 12 | // Template | |
| 13 | <?php | |
| 14 | $this->load->view('templates/header', $data);
| |
| 15 | $this->load->view($page, $data); | |
| 16 | $this->load->view('templates/footer'); |