Welcome Guest, Not a member yet? Register   Sign In
multiple views per controller
#52

[eluser]Craig A Rodway[/eluser]
You don't need to split your template up into spearate files - just have one file that contains the menu and header etc. in one page instead of loading the views separately. It will be quicker as less files have to be got from disk, and easier to maintain one piece of code rather than several loosely-connected chunks.

If you wanted to do it a different way, do this in the controller:

Code:
class Whatever extends Controller {

  function index() {
    // Data to send to the header view
    $head['extra'] = 'extra stuff for the header';

    // Now load the header view into main data array- we can access this in the view using $head
    $data['head'] = $this->load->view('head', $head, TRUE);

    // Main content here - we can access this in the view by $test
    $data['test'] = 'This will diplay in the Contet .';

    $this->load->view('content', $data);
  }

}

Template

Code:
<html>
<head>
<title>My CI Site</title>

<?php echo $head; ?>

</head>
<body>


  <div id="menu">
    Menu code here...
  </div>

  <div id="content">
    &lt;?php echo $test; ?&gt;
  </div>

  <div id="footer">
     This is my footer
  </div>

&lt;/body&gt;
&lt;/html&gt;


Messages In This Thread
multiple views per controller - by El Forum - 01-18-2008, 03:56 PM
multiple views per controller - by El Forum - 01-18-2008, 04:01 PM
multiple views per controller - by El Forum - 01-18-2008, 04:06 PM
multiple views per controller - by El Forum - 01-18-2008, 04:08 PM
multiple views per controller - by El Forum - 01-18-2008, 04:35 PM
multiple views per controller - by El Forum - 01-19-2008, 06:57 AM
multiple views per controller - by El Forum - 01-19-2008, 07:44 AM
multiple views per controller - by El Forum - 01-19-2008, 07:53 AM
multiple views per controller - by El Forum - 01-19-2008, 10:52 AM
multiple views per controller - by El Forum - 01-20-2008, 03:16 AM
multiple views per controller - by El Forum - 01-22-2008, 10:31 PM
multiple views per controller - by El Forum - 01-22-2008, 10:46 PM
multiple views per controller - by El Forum - 01-22-2008, 10:49 PM
multiple views per controller - by El Forum - 01-22-2008, 10:52 PM
multiple views per controller - by El Forum - 01-24-2008, 03:09 PM
multiple views per controller - by El Forum - 01-24-2008, 04:09 PM
multiple views per controller - by El Forum - 01-24-2008, 07:35 PM
multiple views per controller - by El Forum - 01-24-2008, 09:02 PM
multiple views per controller - by El Forum - 01-24-2008, 09:31 PM
multiple views per controller - by El Forum - 01-25-2008, 05:32 AM
multiple views per controller - by El Forum - 01-25-2008, 07:57 AM
multiple views per controller - by El Forum - 01-25-2008, 08:10 AM
multiple views per controller - by El Forum - 01-25-2008, 10:49 AM
multiple views per controller - by El Forum - 01-25-2008, 11:05 AM
multiple views per controller - by El Forum - 01-25-2008, 11:07 AM
multiple views per controller - by El Forum - 01-25-2008, 11:26 AM
multiple views per controller - by El Forum - 01-25-2008, 11:30 AM
multiple views per controller - by El Forum - 01-25-2008, 11:31 AM
multiple views per controller - by El Forum - 01-25-2008, 11:32 AM
multiple views per controller - by El Forum - 01-25-2008, 11:48 AM
multiple views per controller - by El Forum - 01-25-2008, 11:54 AM
multiple views per controller - by El Forum - 01-25-2008, 11:57 AM
multiple views per controller - by El Forum - 01-25-2008, 12:04 PM
multiple views per controller - by El Forum - 01-25-2008, 12:09 PM
multiple views per controller - by El Forum - 01-25-2008, 12:12 PM
multiple views per controller - by El Forum - 01-25-2008, 12:36 PM
multiple views per controller - by El Forum - 01-25-2008, 12:43 PM
multiple views per controller - by El Forum - 01-26-2008, 05:44 PM
multiple views per controller - by El Forum - 01-26-2008, 05:50 PM
multiple views per controller - by El Forum - 01-26-2008, 06:01 PM
multiple views per controller - by El Forum - 01-27-2008, 12:04 AM
multiple views per controller - by El Forum - 01-27-2008, 01:45 PM
multiple views per controller - by El Forum - 01-27-2008, 03:50 PM
multiple views per controller - by El Forum - 01-28-2008, 06:37 PM
multiple views per controller - by El Forum - 01-31-2008, 06:57 AM
multiple views per controller - by El Forum - 01-31-2008, 09:37 AM
multiple views per controller - by El Forum - 02-04-2008, 10:14 AM
multiple views per controller - by El Forum - 02-04-2008, 01:08 PM
multiple views per controller - by El Forum - 02-04-2008, 03:09 PM
multiple views per controller - by El Forum - 02-04-2008, 03:38 PM
multiple views per controller - by El Forum - 02-04-2008, 10:48 PM
multiple views per controller - by El Forum - 02-05-2008, 04:00 AM
multiple views per controller - by El Forum - 02-07-2008, 04:52 AM
multiple views per controller - by El Forum - 03-17-2008, 07:37 AM
multiple views per controller - by El Forum - 02-18-2009, 04:40 PM
multiple views per controller - by El Forum - 05-17-2010, 02:32 PM
multiple views per controller - by El Forum - 05-18-2010, 10:59 AM



Theme © iAndrew 2016 - Forum software by © MyBB