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

[eluser]bijon[/eluser]
@craig Rodway

The example you showed that is one of the way to do that . But in that case for each view,you have to load the view
Quote:<?php $this->load->view('header'); ?>
<?php $this->load->view('menu'); ?>
<?php $this->load->view('footer'); ?>

What i want to do that is ..

/application/views/header.php
Quote:<html>
<head>
<title>My CI Site</title>
<!-- add extra javascript, -->
<?php echo (isset($extra)) ? $extra : '' ?>
</head>

<body>
/application/views/menu.php
Quote:<div id="menu"> Here is the Menu </div>
/application/views/footer.php
Quote:<div id="footer">@copyright 2008 CI Master Page</div>

And NOw i will combine the header , footer and Menu in my Master_Page Class

/application/libraries/Master_Page.php
Quote: class Master_Page {

function Master_Page() {
parent::Controller();
$this->load->view(’header’);
$this->load->view(’menu’);
$this->load->view(’footer’);
}

}

In the controller i just extends the Master_Page Class.As a result the header,menu,footer will be construct . I just call only the content view.
/application/controllers/whatever.php
Quote:class Whatever extends Master_Page {

function index() {
$this->data->test = ‘This will diplay in the Contet .’;
$this->load->view(’content’, $this->data);
}

}

And in the Content View i do not load the the header,footer and menu
like
/application/views/content.php
Quote:<div id="content">
&lt;?php echo $data; ?&gt;
</div>

When this Content View load, It will also show the Header, Footer , Menu .

Thanks


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