Example #1
0
 public function __construct()
 {
     parent::__construct();
     // Set mode and module name
     $this->template['admin'] = true;
     $this->template['module'] = 'admin';
 }
Example #2
0
 public function __construct()
 {
     parent::__construct();
     // Load Model
     $this->load->model('layout_model');
     $this->load->model('category_model');
 }
Example #3
0
 public function __construct()
 {
     parent::__construct();
     // Load Library
     $this->load->library('form_validation');
     // Get last segment of uri
     $this->last_seg = $this->uri->segment(3);
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     // Page title
     /*$this->template->title = "Layout";
     
     		// Javascript
     		$this->template->javascript = 'assets/js/base';*/
 }
Example #5
0
 public function __construct()
 {
     parent::__construct();
     // Load Model
     $this->load->model('pages');
     // Set mode and module name
     $this->template['admin'] = true;
     $this->template['module'] = 'page';
 }
Example #6
0
 public function __construct()
 {
     parent::__construct();
     // Load Model
     $this->load->model('recycles');
     // Set mode and module name
     $this->template['admin'] = 'true';
     $this->template['module'] = 'recycle';
     // Load the view file
     $this->view = 'admin_recycle/index';
 }
Example #7
0
 public function __construct()
 {
     parent::__construct();
     // Load Models
     $this->load->model('files');
     $this->load->model('recycles');
     // Load Library
     $this->load->library('form_validation');
     // Get last segment of uri
     $this->last_seg = $this->uri->segment(3);
     // Set mode and module name
     $this->template['admin'] = true;
     $this->template['module'] = 'file';
     // Load the view file
     $this->view = 'admin_file/index';
 }
Example #8
0
 public function __construct()
 {
     parent::__construct();
 }
Example #9
0
 public function __construct()
 {
     parent::__construct();
     $this->load->helper('themes');
 }