Lines Matching refs:INPUT
31 global $INPUT; //available since release 2012-10-13 "Adora Belle"
35 switch($INPUT->str('operation')){
41 if (!($route = $helper->loadRoute($INPUT->str('route'),$INPUT->arr('loader')))){
42 $data = array('error'=>true,'msg'=>"Can't load route '".$INPUT->str('route')."'!");
44 …$data = array('html' => $helper->htmlExplorer($INPUT->str('route'),ltrim(':'.$INPUT->str('itemid')…
52 $route = $helper->loadRoute($INPUT->str('route'),$INPUT->arr('loader'));
53 if (!$route || !is_callable(@$route['callbacks'][$INPUT->str(event)])) {
54 …data = array('error'=>true,'msg'=>"Can't load callback '".$INPUT->str('event')."'for '".$INPUT->st…
56 …$data = @call_user_func_array($route['callbacks'][$INPUT->str(event)],array($INPUT->str('itemid'))…
57 …if (!is_array($data)) $data = array('error'=>true,'msg'=>"Callback for '".$INPUT->str('event')."' …
60 $data = array('error'=>true,'msg'=>'Unknown operation: '.$INPUT->str('operation'));