%PDF- %PDF-
Direktori : /home/ugotscom/public_html/sterren/application/modules/dashboard/controllers/ |
Current File : /home/ugotscom/public_html/sterren/application/modules/dashboard/controllers/Dashboard.php |
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Dashboard extends CI_Controller { function __construct() { parent::__construct(); if(isset($_SESSION['username'])){ }else{ redirect('login'); } } public function index() { $this->load->model('Dashboard_model'); $data['details']=$this->Dashboard_model->get_count(); $data['hot_leads']=$this->Dashboard_model->hot_leads(); $data['closed_leads']=$this->Dashboard_model->closed_leads(); /*$this->load->view('dashboard',$data); $this->load->view('common/footer');*/ $data['content'] = $this->load->view('dash',$data); $this->load->view('common/layout',$data); } }