Home
last modified time | relevance | path

Searched refs:param (Results 1 – 25 of 37) sorted by relevance

12

/dokuwiki/_test/tests/inc/
H A Devents_nested.test.php20 $param = array();
21 Event::createAndTrigger('NESTED_EVENT', $param);
32 $param = array();
33 Event::createAndTrigger('NESTED_EVENT', $param);
/dokuwiki/inc/Extension/
H A DEventHandler.php47 * @param mixed $param data passed to the event handler
50 public function register_hook($event, $advise, $obj, $method, $param = null, $seq = 0) argument
54 $this->hooks[$event . '_' . $advise][$seq][] = [$obj, $method, $param];
75 [$obj, $method, $param] = $hook;
78 $method($event, $param);
80 $obj->$method($event, $param);
/dokuwiki/lib/plugins/testing/
H A Daction.php24 $param = [];
25 Event::createAndTrigger('TESTING_PLUGIN_INSTALLED', $param);
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingSepchar.php11 public function __construct($key, $param = null) argument
17 parent::__construct($key, $param);
/dokuwiki/lib/plugins/config/lang/fr/
H A Dintro.txt3 …tilisez cette page pour contrôler les paramètres de votre installation de DokuWiki. Pour de l'aide…
5paramètres affichés sur un fond rouge sont protégés et ne peuvent être modifiés avec cette extensi…
/dokuwiki/lib/plugins/authad/
H A Daction.php32 * @param array $param
34 public function handleAuthLoginCheck(Event $event, $param) argument
57 * @param array $param
59 public function handleFormLoginOutput(Event $event, $param) argument
/dokuwiki/lib/plugins/logviewer/
H A Daction.php27 * @param mixed $param optional parameter passed when event was registered
30 public function pruneLogs(Event $event, $param) argument
/dokuwiki/lib/plugins/styling/
H A Daction.php30 * @param mixed $param [the parameters passed as fifth argument to register_hook() when this
34 public function handleHeader(Event &$event, $param) argument
/dokuwiki/inc/Action/
H A DSubscribe.php69 foreach (['target', 'style', 'action'] as $param) {
70 if ($INPUT->has("sub_$param")) {
71 $params[$param] = $INPUT->str("sub_$param");
/dokuwiki/lib/plugins/acl/
H A Daction.php34 * @param mixed $param empty
37 public function handleAjaxCallAcl(Event $event, $param) argument
/dokuwiki/inc/ChangeLog/
H A DRevisionInfo.php275 … $param = ['tab_details' => 'history', 'mediado' => 'diff', 'ns' => getNS($id), 'image' => $id];
276 $href = media_managerURL($param, '&');
313 $param = ['mediado' => 'diff', 'image' => $id, 'rev' => $rev];
314 $href = media_managerURL($param, '&');
350 $param = ['tab_details' => 'history', 'ns' => getNS($id), 'image' => $id];
351 $href = media_managerURL($param, '&');
/dokuwiki/inc/parser/
H A Dhandler.php667 $param = preg_split('/\s+/', $matches[0], 2, PREG_SPLIT_NO_EMPTY);
668 while (count($param) < 2) $param[] = null;
670 if ($param[0] == 'html') $param[0] = 'html4strict';
671 if ($param[0] == '-') $param[0] = null;
672 array_unshift($param, $matches[1]);
674 $param [] = $this->parse_highlight_options($options[0]);
676 $this->addCall($type, $param, $pos);
1105 $param = substr($link[0], $pos + 1);
1108 $param = '';
1112 if (preg_match('#(\d+)(x(\d+))?#i', $param, $size)) {
[all …]
/dokuwiki/lib/plugins/styling/lang/fr/
H A Dintro.txt1 Cet outil vous permet de changer les paramètres de certains style de votre thème actuel.
/dokuwiki/inc/Remote/OpenApiDoc/
H A DDocBlockMethod.php76 foreach ($this->tags['param'] ?? [] as $param) {
77 [$type, $name, $description] = array_map('trim', sexplode(' ', $param, 3, ''));
/dokuwiki/lib/plugins/config/core/
H A DConfiguration.php195 $param = $this->metadata[$key];
196 $class = $this->determineClassName(array_shift($param), $key); // first param is class
197 $obj = new $class($key, $param);
/dokuwiki/lib/plugins/popularity/
H A Daction.php36 public function autosubmit(Event $event, $param) argument
/dokuwiki/lib/plugins/extension/
H A Daction.php35 public function handleAjaxToggle(Event $event, $param) argument
/dokuwiki/lib/plugins/safefnrecode/
H A Daction.php27 public function handleIndexerTasksRun(Event $event, $param) argument
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DXML.php246 $param = preg_replace('#.*/#', '', $query);
247 $$param = self::decodeValue($result->item(0)->textContent);
297 $param = preg_replace('#.*/#', '', $query);
298 $$param = $result->item(0)->textContent;
/dokuwiki/inc/
H A Dpageutils.php31 * @param string $param the $_REQUEST variable name, default 'id'
35 function getID($param = 'id', $clean = true) argument
42 $id = $INPUT->str($param);
52 if ($param != 'id') {
107 if ($id === '' && $param == 'id') $id = $conf['start'];
H A Dinit.php581 * @param string $path
582 * @param bool $exists
H A Dhtml.php702 * @param array $param
705 function html_edit_form($param) argument
708 (new Editor())->addTextarea($param);
/dokuwiki/lib/plugins/usermanager/
H A Dadmin.php126 $fn = $INPUT->param('fn');
130 $param = is_array($fn[$cmd]) ? key($fn[$cmd]) : null;
133 $param = null;
152 $this->editUser($param);
155 $this->setFilter($param);
748 * @param string $param id of the user
751 protected function editUser($param) argument
755 $user = $this->auth->cleanUser(preg_replace('/.*[:\/]/', '', $param));
/dokuwiki/lib/plugins/revert/
H A Dadmin.php60 if (is_array($INPUT->param('revert')) && checkSecurityToken()) {
/dokuwiki/
H A Ddoku.php50 $HIGH = $INPUT->param('s');

12