Exemplo n.º 1
0
 function ctl_delivery_printer()
 {
     parent::objectPage();
     $this->pagedata['dpi'] = intval($this->system->getConf('system.clientdpi'));
     if (!$this->pagedata['dpi']) {
         $this->pagedata['dpi'] = 96;
     }
 }
Exemplo n.º 2
0
 function ctl_operator()
 {
     parent::objectPage();
     if (!$this->op->is_super) {
         $this->system->responseCode(403);
         exit;
     }
 }
Exemplo n.º 3
0
 function ctl_tmpimage()
 {
     parent::objectPage();
     regex_file($_GET);
 }
Exemplo n.º 4
0
 function ctl_magicvars()
 {
     parent::objectPage();
     $this->model->filter = 'and var_type= "custom"';
 }