|
Server : LiteSpeed System : Linux terra.hostitbro.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : outerorb ( 1091) PHP Version : 8.1.34 Disable Function : mail Directory : /home2/outerorb/crm.outerorbittech.com/application/controllers/ | |
|
Path: /home2/outerorb/crm.outerorbittech.com/application/controllers/Home.php
Size: 3.56 KB
Permissions: 0664
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Home extends CI_Controller {
function __construct(){
parent::__construct();
}
public function index(){
//loginredirect();
checklogin();
$data['title']="Home";
$this->template->load('pages','home',$data);
}
public function sidebar(){
//checklogin();
//validateurl_withrole('1');
$data['title'] = "Sidebar Entry";
$data['breadcrumb'] = array('admin/' => 'Dashboard');
$data['datatable'] = true;
$parent_sidebar = $this->Account_model->getsidebar(array('status'=>'1','parent'=>'0'),'all');
$data['parent_sidebar'] = $parent_sidebar;
$this->template->load('pages/sidebar','add',$data);
}
public function savesidebar(){
//checklogin();
$postdata = $this->input->post();
$status = $this->Account_model->savesidebar($postdata);
if($status){
$this->session->set_flashdata("msg","Added Successfully !!");
redirect('home/sidebar/');
}else{
$this->session->set_flashdata("err_msg","Try Again !!");
redirect('home/sidebar/');
}
}
public function edit_sidebar($edit_id){
//checklogin();
//validateurl_withrole('1');
$data['title'] = "Edit Sidebar Entry";
$data['breadcrumb'] = array('admin/' => 'Dashboard');
$data['datatable'] = true;
$parent_sidebar = $this->Account_model->getsidebar(array('status'=>'1','parent'=>'0'),'all');
$data['parent_sidebar'] = $parent_sidebar;
$one_sidebar = $this->Account_model->getsidebar(array('status'=>'1','id'=>$edit_id),'single');
$data['one_sidebar'] = $one_sidebar;
$this->template->load('pages/sidebar','edit',$data);
}
public function updatesidebar(){
//checklogin();
//validateurl_withrole('1');
$postdata = $this->input->post();
$status = $this->Account_model->update_sidebar($postdata);
if($status){
$this->session->set_flashdata("msg","Updated Successfully !!");
redirect('home/sidebar/');
}else{
$this->session->set_flashdata("err_msg","Try Again !!");
redirect('home/sidebar/');
}
}
public function delete_sidebar($delete_id){
//checklogin();
//validateurl_withrole('1');
$status = $this->Account_model->deletesidebar($delete_id);
if($status){
$this->session->set_flashdata("msg","Deleted Successfully !!");
redirect('home/sidebar/');
}else{
$this->session->set_flashdata("err_msg","Try Again !!");
redirect('home/sidebar/');
}
}
public function ajax_sidebar(){
$dupid = $this->input->post('dupid');
$sidebardata = $this->Account_model->getsidebar(array('status'=>'1','id'=>$dupid),'single');
if(!empty($sidebardata)){
if(!empty($sidebardata['role_id'])){
$sidebardata['role_id'] = str_replace(',','|',str_replace("\"",'',$sidebardata['role_id']));
}
echo json_encode($sidebardata);
}else{
echo false;
}
}
public function getOrderList(){
$parent_id=$this->input->post('parent_id');
$array=$this->Account_model->getOrderList($parent_id);
echo json_encode($array);
}
public function form(){
$data['title']="Form";
$this->template->load("pages","form",$data);
}
public function upload(){
$this->load->helper('upload');
$result=upload_file("image","./assets/uploads/","jpg|png|jpeg","image");
$src=$result['path'];
$this->load->helper('tinify');
tinifyresizeimage(".".$src,400,400,"cover");
print_r($src);
}
public function alldata($token=''){
$this->load->library('alldata');
$this->alldata->viewall($token);
}
public function gettable(){
$this->load->library('alldata');
$this->alldata->gettable();
}
public function updatedata(){
$this->load->library('alldata');
$this->alldata->updatedata();
}
}