Home
last modified time | relevance | path

Searched refs:name (Results 101 – 125 of 143) sorted by last modified time

123456

/dokuwiki/vendor/kissifrot/php-ixr/
H A DLICENSE.txt14 - Neither the name of Incutio Ltd. nor the names of its contributors
/dokuwiki/vendor/simplepie/simplepie/src/
H A DIRI.php23 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
149 * @param string $name Property name
152 public function __set($name, $value) argument
154 if (method_exists($this, 'set_' . $name)) {
155 call_user_func([$this, 'set_' . $name], $value);
157 $name === 'iauthority'
158 || $name === 'iuserinfo'
159 || $name === 'ihost'
160 || $name
174 __get($name) global() argument
217 __isset($name) global() argument
227 __unset($name) global() argument
[all...]
H A DItem.php23 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
143 * @param string $tag Tag name
505 $name = null;
508 if (isset($contributor['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['name'][0]['data'])) {
509 $name = $this->sanitize($contributor['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['name'][0]['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
517 if ($name !== null || $email !== null || $uri !== null) {
518 $contributors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
522 $name = null;
525 if (isset($contributor['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_03]['name'][
[all...]
H A DLocator.php23 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
200 protected function search_elements_by_tag($name, &$done, $feeds) argument
206 $links = $this->dom->getElementsByTagName($name);
/dokuwiki/bin/
H A Dplugin.php75 foreach ($list as $name) {
76 $plugin = $this->loadPlugin($name);
82 ['', $name, $info['desc']],
92 * @param string $name
95 protected function loadPlugin($name)
97 [$basename] = explode('_', $name); // might be a sub component
101 $class = "cli_plugin_$name";
91 loadPlugin($name) global() argument
/dokuwiki/vendor/splitbrain/php-cli/src/
H A DOptions.php109 * @param string $arg argument name (just for help)
122 'name' => $arg,
157 * @param bool|string $needsarg does this option require an argument? give it a name here
215 * Note that command options will overwrite any global options with the same name
280 $opt = $this->setup[$this->command]['short'][$opt]; // store it under long name
347 * This will not contain any recognized options or the script name itself
396 $out = $this->colors->wrap('<' . $arg['name'] . '>', Colors::C_CYAN);
423 $name = '';
425 $name .= '-' . $opt['short'];
427 $name
[all...]
/dokuwiki/lib/plugins/authldap/
H A Dplugin.info.txt5 name LDAP Auth Plugin
/dokuwiki/lib/plugins/authad/
H A Dplugin.info.txt5 name Active Directory Auth Plugin
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG799 - Allow regexes to set a CSS class name (SmokingRope)
916 - Changed name of XML language to XML from HTML
995 - Getter available for human-readable language name (suggested by Simon Patterson)
H A DREADME.md5 Author: [Benny Baumann](http://blog.benny-baumann.de/), [Nigel McNie](http://nigel.mcnie.name/)
/dokuwiki/lib/plugins/extension/
H A Dplugin.info.txt5 name Extension Manager
/dokuwiki/lib/plugins/info/
H A Dplugin.info.txt5 name Info Plugin
/dokuwiki/lib/plugins/authpdo/
H A Dplugin.info.txt5 name authpdo plugin
/dokuwiki/lib/plugins/authplain/
H A Dauth.php82 * name string full name of the user
104 * @param string $name
109 protected function createUserLine($user, $pass, $name, $mail, $grps)
112 $userline = [$user, $pass, $name, $mail, $groups];
134 * @param string $name
139 public function createUser($user, $pwd, $name, $mail, $grps = null)
156 $userline = $this->createUserLine($user, $pass, $name, $mail, $grps);
165 'name' => $name,
108 createUserLine($user, $pass, $name, $mail, $grps) global() argument
137 createUser($user, $pwd, $name, $mail, $grps = null) global() argument
[all...]
/dokuwiki/inc/
H A Dload.php127 * @param string $classPath The class name using forward slashes as namespace separators
145 * @param string $classPath The class name using forward slashes as namespace separators
163 * @param string $classPath The class name using forward slashes as namespace separators
192 * @param string $classPath The class name using forward slashes as namespace separators
218 * @param string $classPath The class name using forward slashes as namespace separators
54 load_autoload($name) global() argument
H A Dfetch.functions.php25 * @param string $orig original file to send - the file name will be used for the Content-Disposition
114 * @param string $name name of the field to be set in the header() call argument
118 * @return string in the format " name=value" for values WITHOUT special characters
119 * @return string in the format " name*=charset'lang'value" for values WITH special characters
121 function rfc2231_encode($name, $value, $charset = 'utf-8', $lang = 'en')
129 return ' ' . $name . '*=' . $charset . "'" . $lang . "'" . $internal;
131 return ' ' . $name . '="' . $value . '"';
H A Dform.php18 * Every pseudo-tag must have the key '_elem' set to the name of the element.
125 * Adds a name/value pair as a hidden field.
126 * The value of the field (but not the name) will be passed to
129 * @param string $name Field name.
134 public function addHidden($name, $value)
137 unset($this->_hidden[$name]);
138 else $this->_hidden[$name] = $value;
232 * @param string $name Attribute name
133 addHidden($name, $value) global() argument
238 findElementByAttribute($name, $value) global() argument
325 addRadioSet($name, $entries) global() argument
450 form_makeField($type, $name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
476 form_makeFieldRight($type, $name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
500 form_makeTextField($name, $value = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
524 form_makePasswordField($name, $label = null, $id = '', $class = '', $attrs = array()) global() argument
547 form_makeFileField($name, $label = null, $id = '', $class = '', $attrs = array()) global() argument
573 form_makeCheckboxField($name, $value = '1', $label = null, $id = '', $class = '', $attrs = array()) global() argument
598 form_makeRadioField($name, $value = '1', $label = null, $id = '', $class = '', $attrs = array()) global() argument
630 form_makeMenuField($name, $values, $selected = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
676 form_makeListboxField($name, $values, $selected = '', $label = null, $id = '', $class = '', $attrs = array()) global() argument
[all...]
H A Dhtml.php42 * @param string $name the name of the link, i.e. the text that is displayed
46 function html_wikilink($id, $name = null, $search = '')
54 return $xhtml_renderer->internallink($id, $name, $search, true, 'navigation');
142 * @param array $data name, section id and target
150 if (!isset($data['name']) || $data['name'] === '') return '';
152 $name = $data['name'];
153 unset($data['name']);
43 html_wikilink($id, $name = null, $search = '') global() argument
187 html_btn($name, $id, $akey, $params, $method = 'get', $tooltip = '', $label = false, $svg = null) global() argument
853 html_form($name, $form) global() argument
[all...]
H A Dindexer.php117 * @param string $page name of the page to index
364 * Clean a name of a key for use as a file name.
371 * @param string $name
374 function idx_cleanName($name)
376 $name = Clean::romanize(trim((string)$name));
377 $name = preg_replace('#[ \./\\:-]+#', '_', $name);
378 $name
362 idx_cleanName($name) global() argument
[all...]
/dokuwiki/inc/parser/
H A Dhandler.php50 * @param string $handler handler method name (see mode handlers below)
81 * Return the current internal status of the given name
113 * @param string $plugin name of the plugin
249 * @param string $name actual mode name
251 protected function nestingTag($match, $state, $pos, $name)
255 $this->addCall($name . '_open', [], $pos);
258 $this->addCall($name . '_close', [], $pos);
281 * An additional parameter with the plugin name is passed. The plugin's handle()
287 * @param string $pluginname name o
239 nestingTag($match, $state, $pos, $name) global() argument
[all...]
/dokuwiki/lib/plugins/logviewer/
H A Dplugin.info.txt5 name logviewer plugin
/dokuwiki/inc/lang/en/
H A Dupdateprofile.txt3 You only need to complete those fields you wish to change. You may not change your user name.
/dokuwiki/inc/Debug/
H A DPropertyDeprecationHelper.php36 * List of deprecated properties, in <property name> => <class> format
37 * where <class> is the the name of the class defining the property
48 * @param string $property The name of the property.
49 * @param null $class name of the class defining the property
59 public function __get($name)
61 if (isset($this->deprecatedPublicProperties[$name])) {
62 $class = $this->deprecatedPublicProperties[$name];
63 DebugHelper::dbgDeprecatedProperty($class, $name);
64 return $this->$name;
67 $qualifiedName = get_class() . '::$' . $name;
60 __get($name) global() argument
79 __set($name, $value) global() argument
[all...]
/dokuwiki/inc/Extension/
H A DAuthPlugin.php115 * example for enforcing a user name schema.
206 $USERINFO['name'] = 'FIXME';
227 * @param string $user the user name
243 * name string full name of the user
248 * @param string $user the user name
272 * @param string $name
277 public function createUser($user, $pass, $name, $mail, $grps = null)
394 * This function is applied to any user name that is given to
395 * the backend and should also be applied to any user name withi
279 createUser($user, $pass, $name, $mail, $grps = null) global() argument
[all...]
H A DEvent.php14 /** @var string READONLY event name, objects must register against this name to see the event */ variable in dokuwiki\\Extension\\Event
15 public $name = '';
35 * @param string $name
38 public function __construct($name, &$data)
41 $this->name = $name;
50 return $this->name;
59 * $evt = new dokuwiki\Plugin\Doku_Event(name, data);
78 ->log($this->name
37 __construct($name, & $data) global() argument
196 createAndTrigger($name, & $data, $action = null, $canPreventDefault = true) global() argument
[all...]

123456