%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
<?php class Dashboard extends MY_Controller { function __construct() { parent::__construct(); not_logged_res(); session_write_close(); $this->load->model("dashboard_model", "dash"); $this->load->model("dataset_model", "dataset"); $this->load->model("reports_model", "report"); $this->load->model("user_model", "user"); } function scoreBoard(){ $res['result']=$this->dash->scoreBoard(); json_data($res); } function applicationFunnel(){ $res['result']=$this->dash->applicationFunnel(); json_data($res); } function utmUourceWiseLeads(){ $_REQUEST['dateFrom']=$_REQUEST['from_date']; $_REQUEST['dateTo']=$_REQUEST['to_date']; $res['result']=$this->report->leadSourceWise(); json_data($res); } function leadFunnel(){ $res['result']=$this->dash->leadFunnel(); json_data($res); } function leadTimeSlot(){ $res['leads']=$this->dash->leadTimeSlot(); $res['applications']=$this->dash->leadTimeSlot(true); json_data($res); } function applicationTimeSlot(){ $res['result']=$this->dash->leadTimeSlot(true); json_data($res); } function ageAndGenderWise(){ $res['ages']=$this->dash->ageWiseLeads(); $res['genders']=$this->dash->genderWiseLeads(); json_data($res); } } //EOF