edlopez

Untitled

Mar 24th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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');
Advertisement
Add Comment
Please, Sign In to add comment