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