edlopez

Untitled

Mar 24th, 2012
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.43 KB | None | 0 0
  1. // ADMIN
  2. function login() { //
  3.     $this->init();
  4.     $data['title'] = $this->i18n->_('login:title');
  5.     $data['description'] = $this->i18n->_('login:description');
  6.     $data['author'] = $this->i18n->_('login:author');
  7.  
  8.     $this->load->view('templates/content');
  9. }
  10.  
  11. // Template
  12. <?php
  13.     $this->load->view('templates/header', $data);
  14.         $this->load->view($page, $data);
  15.     $this->load->view('templates/footer');
Advertisement
Add Comment
Please, Sign In to add comment