123456789101112131415161718192021222324252627 |
- <?php defined('BASEPATH') OR exit('No direct script access allowed');
- /**
- * 一些服务与erp自检的小工具
- */
- class Erpxgj extends Start_Controller {
- public function __construct(){
- parent::__construct();
- $this->load->library('session');
- }
- //定义方法的调用规则 获取URI第二段值
- public function _remap($arg,$arg_array)
- {
- if($arg == 'scanbar')//添加
- {
- $this->_sacnbar();
- }
- else
- {
- exit('No direct script access allowed');
- }
- }
- public function _sacnbar(){
- $this->_Template('erpxg_sacnbar',$this->data);
- }
- }
|