layout library - rakeshraushan/CodeIgniter-1 GitHub Wiki
Category:Library::View | Category:Library::Community
This is a cake-like layout/view system...
/application/libraries/Layout.php
<?php
if (!defined('BASEPATH')) exit('No direct script access allowed');
class Layout
{
var $obj;
var $layout;
function __construct()
{
$this->obj =& get_instance();
$this->layout = 'layout_main';
}
function setLayout($layout)
{
$this->layout = $layout;
}
function view($view, $data=null, $return=false)
{
$loadedData = array();
$loadedData['content_for_layout'] = $this->obj->load->view($view,$data,true);
if($return)
{
$output = $this->obj->load->view($this->layout, $loadedData, true);
return $output;
}
else
{
$this->obj->load->view($this->layout, $loadedData, false);
}
}
}
?>
You can use it in two ways. First and obvious is to place the following line in the controller's constructor function.
$this->load->library('layout', 'layout_main');
The second is by enabling codeIgniter to autoload the library by editing /application/config/autoload.php
$autoload['libraries'] = array('layout');
After you do either of the above, and the library is loaded, in your controller you may do this:
$this->layout->view('/shop/view_cart', $data);
/application/views/layout_main.php
Your view file must use $content_for_layout
. For example:
<html>
<head>
<title><?php $title_for_layout ?></title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<link rel="stylesheet" href="/css/main.css" type="text/css" />
</head>
<body>
<div id="pagewidth" >
<div id="header" ><img src="/images/header.jpg" width="700" height="200"></div>
<div id="wrapper" class="clearfix" >
<div id="twocols" class="clearfix">
<?php echo $content_for_layout ?>
</div>
</div>
<div id="footer" > Footer </div>
</div>
</body>
</html>
To use a different layout simply use the following. This could be useful if you have a different style for your general users and your administrators:
$this->layout->setLayout('layout_other');
The above example assumes you have a file in /application/views/ named layout_other.