09-03-2009, 03:32 AM
[eluser]pyrokinesis[/eluser]
Thanks for the help guys...
Ended up opting for the simple solution:
Thanks
Thanks for the help guys...
Ended up opting for the simple solution:
Code:
<?
class Sample_Class extends Controller {
private $active_menu_item;
public function __construct() {
parent::__construct();
$this->active_menu_item = 'Menu Item One';
}
public function function_one() {
$data['page_title'] = 'Page Title';
$data['active_menu_item'] = $this->active_menu_item;
$this->load_main_view($data);
}
?>
Thanks