Server IP : 103.191.208.50 / Your IP : 216.73.216.53 Web Server : LiteSpeed System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64 User : celkcksm ( 1031) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, popen, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/celkcksm/public_html/../banking.ncriptech.com/application/libraries/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php class RBAC { private $module_access; function __construct() { $this->obj =& get_instance(); $this->obj->module_access = $this->obj->session->userdata('module_access'); $this->obj->is_supper = $this->obj->session->userdata('is_supper'); } //---------------------------------------------------------------- function set_access_in_session() { $this->obj->db->from('module_access'); $this->obj->db->where('admin_role_id',$this->obj->session->userdata('admin_role_id')); $query=$this->obj->db->get(); $data=array(); foreach($query->result_array() as $v) { $data[$v['module']][$v['operation']] = ''; } $this->obj->session->set_userdata('module_access',$data); } //-------------------------------------------------------------- function check_module_access() { if($this->obj->is_supper){ return 1; } elseif($this->obj->uri->segment(1) == 'admin'){ return 1; } elseif(!$this->check_module_permission($this->obj->uri->segment(2))) //sending controller name { $back_to = $_SERVER['REQUEST_URI']; $back_to = $this->obj->functions->encode($back_to); redirect('access_denied/index/'.$back_to); } } //-------------------------------------------------------------- function check_module_permission($module) // $module is controller name { $access = false; if($this->obj->is_supper) return true; elseif(isset($this->obj->module_access[$module])){ foreach($this->obj->module_access[$module] as $key => $value) { if($key == 'access') { $access = true; } } if($access) return 1; else return 0; } } //-------------------------------------------------------------- function check_operation_access() { if($this->obj->is_supper){ return 1; } elseif(!$this->check_operation_permission($this->obj->uri->segment(3))) { $back_to =$_SERVER['REQUEST_URI']; $back_to = $this->obj->functions->encode($back_to); redirect('access_denied/index/'.$back_to); } } //-------------------------------------------------------------- function Check_operation_permission($operation) { if(isset($this->obj->module_access[$this->obj->uri->segment(2)][$operation])) return 1; else return 0; } } ?>