Advertisement
Guest User

Untitled

a guest
Sep 4th, 2011
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4.     //Getting all the Reviews and put them on the includes/header.php
  5.     function sidebar()
  6.     {
  7.         //Get the instance of the framework
  8.         $CI=& get_instance();
  9.        
  10.        
  11.         //Getting data from sidebarModel
  12.         $CI->load->model('sidebar_model');
  13.         $data['sidebarRow'] = $CI->sidebar_model->getSidebarReviews();
  14.        
  15.         //$data['main_content'] = 'frontpage_view';
  16.         $this->load->view('template', $data);
  17.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement