| Server IP : 94.136.191.34 / Your IP : 216.73.216.25 Web Server : Apache System : Linux hostpanel.netbiz.in 5.15.0-130-generic #140-Ubuntu SMP Wed Dec 18 17:59:53 UTC 2024 x86_64 User : omkar.com_6nnuz6y629h ( 10087) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system,proc_open,popen MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/omkar.com/httpdocs/application/controllers/admin/ |
Upload File : |
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
/**
* Description of admistrator
*
* @author pc mart ltd
*/
class Dashboard extends CI_Controller {
public function __construct() {
parent::__construct();
//if ($this->session->userdata('username') ==''){
// redirect('admin/login');
//}
//$this->load->model('admin_model');
}
public function index($action = NULL) {
$data['title'] = 'Dashboard';
//$data['page'] = lang('dashboard');
$data['subview'] = $this->load->view('admin/main_content', $data, TRUE);
$this->load->view('admin/_layout_main', $data);
}
}