Guest User

Untitled

a guest
Oct 21st, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 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['sidebarData'] = $CI->sidebar_model->getSidebarReviews();
  14.        
  15.         //Return data to the template
  16.         $data['main_content'] = 'include/header';
  17.         $CI->load->view('template', $data);
  18.     }
Add Comment
Please, Sign In to add comment