Welcome Guest, Not a member yet? Register   Sign In
Change the main content per controller change
#3

(This post was last modified: 07-29-2017, 11:47 AM by skunkbad.)

This is how I do it:


PHP Code:
public function foo()
{
 
   // Passing along vars to the view when necessary
 
   $view_data NULL;

 
   $data = [
 
       // $content is in the main template
 
       'content' => $this->load->view('foo/bar'$view_dataTRUE )
 
   ];

 
   // Main template has the complete page (header, footer, everything) in it
 
   $this->load->view('templates/main'$data);

Reply


Messages In This Thread
RE: Change the main content per controller change - by skunkbad - 07-29-2017, 11:46 AM



Theme © iAndrew 2016 - Forum software by © MyBB