/dokuwiki/inc/Action/ |
H A D | Subscribe.php | 67 $params = array(); variable 70 $params[$param] = $INPUT->str("sub_$param"); 75 if (empty($params['action']) || !checkSecurityToken()) return; 78 Event::createAndTrigger('ACTION_HANDLE_SUBSCRIBE', $params, array($this, 'handlePostData')); 80 $target = $params['target']; 81 $style = $params['style']; 82 $action = $params['action']; 119 * @param array &$params the parameters: target, style and action 122 public function handlePostData(&$params) 129 if (!isset($params['targe 172 $params = compact('target', 'style', 'action'); global() variable [all...] |
/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/ |
H A D | Cache.php | 126 $params = parse_url($url); variable 127 $params['extras'] = array(); 128 if (isset($params['query'])) 130 parse_str($params['query'], $params['extras']); 132 return $params;
|
/dokuwiki/inc/Menu/Item/ |
H A D | Edit.php | 27 $this->params['do'] = 'draft'; 29 $this->params['rev'] = $REV; 36 $params['rev'] = $REV; 41 $this->params = array('do' => ''); variable
|
H A D | Login.php | 18 $this->params['sectok'] = getSecurityToken(); 23 $this->params['do'] = 'logout';
|
H A D | Revert.php | 24 $this->params['rev'] = $REV; 25 $this->params['sectok'] = getSecurityToken();
|
H A D | AbstractItem.php | 38 protected $params = array(); variable 65 $this->params['do'] = $this->type; 108 * Basically runs wl() on $id and $params. However if the ID is a hash it is used directly 120 return wl($this->id, $this->params, false, '&'); 220 return $this->params; 248 'params' => $this->params,
|
H A D | Media.php | 18 $this->params['ns'] = getNS($ID);
|
H A D | Back.php | 24 $this->params = array('do' => ''); variable
|
H A D | MediaManager.php | 25 $this->params = array( variable
|
H A D | ImgBackto.php | 19 $this->params = array(); variable
|
H A D | Top.php | 19 $this->params = array('do' => ''); variable
|
/dokuwiki/lib/plugins/authpdo/ |
H A D | auth.php | 307 $params = $olddata; variable 308 $params['newlogin'] = $changes['user']; 310 $ok = $this->query($this->getConf('update-user-login'), $params); 316 $params = $olddata; variable 317 $params['clear'] = $changes['pass']; 318 $params['hash'] = auth_cryptPassword($changes['pass']); 320 $ok = $this->query($this->getConf('update-user-pass'), $params); 326 $params = $olddata; variable 327 if (isset($changes['mail'])) $params['mail'] = $changes['mail']; 328 if (isset($changes['name'])) $params['nam 697 $params = array(); global() variable 786 $params = explode(':', $key); global() variable [all...] |
/dokuwiki/inc/ |
H A D | form.php | 38 public $params = array(); variable 57 * @param mixed $params Parameters for the HTML form element; Using the deprecated 65 public function __construct($params, $action=false, $method=false, $enctype=false) 67 if (!is_array($params)) { 68 $this->params = array('id' => $params); variable 69 if ($action !== false) $this->params['action'] = $action; 70 if ($method !== false) $this->params['method'] = strtolower($method); 71 if ($enctype !== false) $this->params['enctype'] = $enctype; 73 $this->params variable [all...] |
H A D | infoutils.php | 484 $params = array(); variable 488 $params[] = '[Object '.get_class($arg).']'; 490 $params[] = '[Array]'; 492 $params[] = '[NULL]'; 494 $params[] = (string) '"'.$arg.'"'; 498 $params = implode(', ',$params); variable 502 str_replace("\n", '\n', $params),
|
H A D | html.php | 127 $params = array_merge( variable 133 $html.= html_btn('secedit', $ID, '', $params, 'post', $name); 164 * @param string[] $params key-value pairs added as hidden inputs 171 function html_btn($name, $id, $akey, $params, $method = 'get', $tooltip = '', $label = false, $svg = null) { 188 $params['id'] = $id; 193 if (is_array($params)) { 194 foreach ($params as $key => $val) { 852 * The parameters $params, $flashvars and $atts need to be associative arrays. 863 * @param array $params - additional parameters (<param>) 869 function html_flashobject($swf,$width,$height,$params [all...] |
H A D | confutils.php | 291 * @param array $params optional additional params to pass to the callback 299 function retrieveConfig($type,$fn,$params=null,$combine='array_merge') { 302 if(!is_array($params)) $params = array(); 310 $config = call_user_func_array($fn,array_merge(array($file),$params));
|
H A D | deprecated.php | 64 public function __construct($key, array $params = null) 67 parent::__construct($key, $params); 78 public function __construct($key, array $params = null) 81 parent::__construct($key, $params); 92 public function __construct($key, array $params = null) 95 parent::__construct($key, $params);
|
/dokuwiki/lib/scripts/ |
H A D | locktimer.js | 105 params = 'call=lock&id=' + dw_locktimer.pageid + '&'; 114 params += jQuery('#dw__editform').find(dw_locktimer.fieldsToSaveAsDraft.join(', ')).serialize(); 119 params,
|
H A D | media.js | 315 var $link, $content, params; 340 params = 'call=medialist&'; 343 params += $link[0].search.substr(1); 345 params += dw_mediamanager.form_params($link); 347 params += dw_mediamanager.form_params($link.closest('form')); 351 dw_mediamanager.update_content($content, params); 412 var $link, $content, params, update_list; 426 params = 'call=mediadetails&'; 429 params += $link[0].search.substr(1); 431 params 590 var params = dw_mediamanager.form_params($select.closest('form')) + '&call=mediadiff'; global() variable [all...] |
H A D | fileuploader.js | 258 params: {}, 298 setParams: function(params){ 299 this._options.params = params; 399 this._handler.upload(id, this._options.params); 870 // params for files in queue 883 * Sends the file identified by id and additional query params to the server 885 upload: function(id, params){ 889 qq.extend(copy, params); 997 _upload: function(id, params){ 257 action: '/server/upload', global() property in qq.FileUploaderBasic._options [all...] |
/dokuwiki/inc/Menu/ |
H A D | MobileMenu.php | 76 $params = $item->getParams(); variable 77 $html .= '<option value="' . $params['do'] . '">';
|
/dokuwiki/lib/plugins/config/core/Setting/ |
H A D | Setting.php | 37 * @param array|null $params array with metadata of setting 39 public function __construct($key, $params = null) { 42 if(is_array($params)) { 43 foreach($params as $property => $value) {
|
/dokuwiki/inc/Extension/ |
H A D | AuthPlugin.php | 121 * @param array $params Parameters for the createUser, modifyUser or deleteUsers method. 125 public function triggerUserMod($type, $params) 137 $eventdata = array('type' => $type, 'params' => $params, 'modification_result' => null); 140 $result = call_user_func_array(array($this, $validTypes[$type]), $evt->data['params']);
|
/dokuwiki/inc/Remote/ |
H A D | ApiCore.php | 508 * @param array $params parameters: summary, minor edit 513 public function putPage($id, $text, $params = array()) 520 $sum = $params['sum']; 521 $minor = $params['minor']; 572 * @param array $params such as summary,minor 576 public function appendPage($id, $text, $params = array()) 582 return $this->putPage($id, $currentpage . $text, $params); 611 * @param array $params such as overwrite 615 public function putAttachment($id, $file, $params = array()) 632 $res = media_save(array('name' => $ftmp), $id, $params['o [all...] |
/dokuwiki/lib/plugins/extension/helper/ |
H A D | gui.php | 217 * @param array $params associative array of parameter to set 222 public function tabURL($tab = '', $params = [], $sep = '&', $absolute = false) 235 return wl($ID, array_merge($defaults, $params), $absolute, $sep);
|