[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
pmb
/
application
/
libraries
/
[
Home
]
File: Template.php
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Template { var $template_data = array (); function set($nama,$value){ $this->template_data[$nama] = $value; } function load ($template = '', $view='', $view_data = array() , $return= FALSE){ $this-> CI =& get_instance(); $this->set ('content', $this->CI->load->view($view,$view_data, TRUE)); return $this->CI->load->view($template, $this->template_data, $return); } }