Welcome Guest, Not a member yet? Register   Sign In
Best Practice for view templates?
#4

[eluser]rafabayona[/eluser]
I do this:

Master template:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

&lt;html&gt;
    &lt;head&gt;
        &lt;meta http-equiv="content-type" content="text/html; charset=utf-8" /&gt;
        &lt;title&gt;&lt;?php echo "$title - "; echo $this->config->item('sitename')?&gt;&lt;/title&gt;
        &lt;link rel="stylesheet" type="text/css" href="&lt;?php echo base_url();?&gt;assets/css/default.css"/&gt;
        &lt; script type="text/javascript" src="&lt;?php echo base_url();?&gt;assets/js/jquery-1.3.2.min.js"&gt;&lt;/ script>

    &lt;/head&gt;
    &lt;body&gt;
        <div id="wrapper">
            <div id="header">
                &lt;?php $this->load->view('header');?&gt;
            </div>&lt;!--header--&gt;

            <div id="content">
                &lt;?php $this->load->view($main);?&gt;
            </div>&lt;!--Content--&gt;

            <div id="footer">
                &lt;?php $this->load->view('footer');?&gt;
            </div>&lt;!--footer--&gt;

        </div>&lt;!--Wrapper--&gt;
    &lt;/body&gt;
&lt;/html&gt;

The users/dashboard.php subview
Code:
<h2>Hi, user, welcome</h2>
<ul>Menu
  <li><a href="#">Blah blah</a></li>
  <li><a href="#">Blah blah</a></li>
  <li><a href="#">Blah blah</a></li>
  <li><a href="#">Blah blah</a></li>
</ul>

And loading the view in a controller
Code:
$data['title'] = 'Blah blah blah';
        $data['main'] = 'users/dashboard'; //This is the sub-view I want to load as main content
        $this->load->vars($data);
        $this->load->view('master_template')


Messages In This Thread
Best Practice for view templates? - by El Forum - 09-29-2009, 09:06 AM
Best Practice for view templates? - by El Forum - 09-29-2009, 09:32 AM
Best Practice for view templates? - by El Forum - 09-29-2009, 09:37 AM
Best Practice for view templates? - by El Forum - 09-30-2009, 02:41 AM



Theme © iAndrew 2016 - Forum software by © MyBB