Advertisement
Guest User

Untitled

a guest
Dec 14th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. <?php
  2. /**
  3. * Author Tama Pratama
  4. */
  5. class template
  6. {
  7. protected $CI;
  8. function __construct()
  9. {
  10. $this->CI =& get_instance();
  11. }
  12.  
  13. function render($url, $data){
  14. $this->CI->load->view("template/header", $data);
  15. $this->CI->load->view($url);
  16. $this->CI->load->view("template/footer");
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement