| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace app\index\controller;
- use think\Controller;
- class Label extends Base
- {
- public function __construct()
- {
- parent::__construct();
- $dispatch = request()->dispatch();
- if (isset($dispatch['module'])) {
- $file = $dispatch['module'][2];
- $param = mac_param_url();
- if(!empty($param['file'])){
- $file = $param['file'];
- }
- $file = str_replace('\\','/',$file);
- if(!file_exists($GLOBALS['MAC_ROOT_TEMPLATE'] . 'label/'. $file.'.html') || strpos($file,'/')!==false){
- return $this->error(lang('illegal_request'));
- }
- echo $this->label_fetch('label/'.$file);
- }
- exit;
- }
- public function index()
- {
- }
- }
|