mirror of
https://github.com/opensourcepos/opensourcepos.git
synced 2026-01-02 06:27:50 -05:00
16 lines
311 B
PHP
16 lines
311 B
PHP
<?php
|
|
class No_Access extends CI_Controller
|
|
{
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
function index($module_id='',$permission_id='')
|
|
{
|
|
$data['module_name']=$this->Module->get_module_name($module_id);
|
|
$data['permission_id']=$permission_id;
|
|
$this->load->view('no_access',$data);
|
|
}
|
|
}
|
|
?>
|