Home
last modified time | relevance | path

Searched +full:name -(+path:inc +path:lang) -(+path:lib +path:plugins +path:lang) -(+path:lib +path:tpl +path:dokuwiki +path:lang) (Results 76 – 100 of 391) sorted by path

12345678910>>...16

/dokuwiki/inc/Ui/
H A DSearch.php511 $name = null;
513 $name = shorten(noNS($id), ' (' . $ns . ')', 30);
515 $link = html_wikilink(':' . $id, $name);
622 $name = '@' . $ns;
623 return $this->searchState->withNamespace($ns)->getSearchLink($name);
H A DUserProfile.php32 'name' => $INPUT->post->str('fullname', $INFO['userinfo']['name'], true),
99 ->val($userinfo['name']);
/dokuwiki/inc/Utf8/
H A DConversion.php52 * @param boolean $entities decode name entities in addtition to numeric ones
H A DPhpString.php16 * @param string $suffix If the name component ends in suffix this will also be cut off
/dokuwiki/inc/
H A Dauth.php835 * @param string $name
839 function auth_nameencode($name, $skip_group = false)
843 $name = (string) $name;
846 if ($name == '%USER%') return $name;
847 if ($name == '%GROUP%') return $name;
849 if (!isset($cache[$name][$skip_group])) {
850 if ($skip_group && $name[
746 auth_nameencode($name, $skip_group = false) global() argument
[all...]
H A Dchangelog.php38 * @param String $id Name of the affected page
104 * @param String $id Name of the affected page
H A Dcommon.php149 $ret = '<div class="no"><input type="hidden" name="sectok" value="' . getSecurityToken() . '" /></div>' . "\n";
188 if (empty($info['userinfo']['name'])) {
189 $info['userinfo']['name'] = $INPUT->server->str('REMOTE_USER');
374 * @param array $params array with (attribute name-attribute value) pairs
400 * @return string[] with the data: array(pageid=>name, ... )
423 $name = noNSorNS($ID);
428 $name = $title;
438 $crumbs[$ID] = $name;
715 * [name] - real name (i
[all...]
H A Dconfutils.php29 * @param string $file file name
128 $wikis['this'] = DOKU_URL . '{NAME}';
H A Ddeprecated.php331 * @param string $name name for the event
341 function trigger_event($name, &$data, $action=null, $canPreventDefault=true) {
343 return \dokuwiki\Extension\Event::createAndTrigger($name, $data, $action, $canPreventDefault);
529 * @param string $login login name of the new user
530 * @param string $fullname full name of the new user
339 trigger_event($name, & $data, $action = null, $canPreventDefault = true) global() argument
H A Dfarm.php11 * * An .htaccess based setup can use any animal directory name:
14 * the domain name: If an animal resides in http://www.example.org:8080/mysite/test/,
63 // check that $animal is a string and just a directory name and not a path
65 nice_die('Sorry! Invalid animal name!');
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 Dhttputils.php217 * @param string $cache cache file name
250 * @param string $file file name
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...]
H A Dinfoutils.php210 $osRelease['NAME'] = 'Synology DSM';
216 $osRelease['PRETTY_NAME'] = implode(' ', [$osRelease['NAME'], $osRelease['VERSION'], $osRelease['SYNO_MODEL']]);
334 if (!empty($INFO['userinfo']['name'])) {
338 $INFO['userinfo']['name']
H A Dio.php19 * $data[0] ns: The colon separated namespace path minus the trailing page name.
23 * @param string $basedir - the config name of the type to delete (datadir or mediadir usally)
64 * $data[1] ns: The colon separated namespace path minus the trailing page name. (false if root ns)
65 * $data[2] page_name: The wiki page name.
196 * $data[1] ns: The colon separated namespace path minus the trailing page name. (false if root ns)
197 * $data[2] page_name: The wiki page name.
477 * $data[0] ns: The colon separated namespace path minus the trailing page name.
520 * @param string $file file name
640 * - if successful will return the name used for the saved file, false otherwise
644 * @param bool $useAttachment true: try to use name o
[all...]
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 Dmail.php59 if (!empty($USERINFO['name'])) {
60 $replace['@NAME@'] = $USERINFO['name'];
62 $replace['@NAME@'] = '';
H A Dmedia.php192 'name' => 'meta[' . $field[0] . ']'
198 $p['name'],
202 $form->addTextarea($p['name'], $lang[$field[1]])->id($p['id'])
270 $data['name'] = PhpString::basename($file);
329 ['name' => $path, 'mime' => $mime, 'ext' => $ext],
364 if (empty($id)) $id = $file['name'];
370 [$fext, $fmime] = mimetype($file['name']);
383 'name' => $file['tmp_name'],
424 * $data[0] fn_tmp: the temporary file name (read from $_FILES)
425 * $data[1] fn: the file name o
[all...]
H A Dpageutils.php31 * @param string $param the $_REQUEST variable name, default 'id'
465 $name = substr($id, 0, -1 * strlen($ext[0]) - 1);
466 $fn = $conf['mediaolddir'] . '/' . utf8_encodeFN($name . '.' . ( (int) $rev ) . '.' . $ext[0]);
597 * Returns the name of a cachefile from given data
603 * @param string $data This data is used to create a unique md5 name
698 * @param string $file file name
728 * @param string $file file name
/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...]
H A Dmetadata.php436 * @param string $link The link name
448 * @param string $name name for the link
450 public function locallink($hash, $name = null)
452 if (is_array($name)) {
453 $this->_firstimage($name['src']);
454 if ($name['type'] == 'internalmedia') {
455 $this->_recordMediaUsage($name['src']);
464 * @param string|array|null $name name fo
445 locallink($hash, $name = null) global() argument
461 internallink($id, $name = null) global() argument
502 externallink($url, $name = null) global() argument
526 interwikilink($match, $name, $wikiName, $wikiUri) global() argument
548 windowssharelink($url, $name = null) global() argument
574 emaillink($address, $name = null) global() argument
661 _simpleTitle($name) global() argument
[all...]
H A Dparser.php64 public function __set($name, $value)
67 if ($name === 'Handler') {
72 if ($name === 'Lexer') {
77 $this->deprecationHelperMagicSet($name, $value);
80 public function __get($name)
82 if ($name === 'Handler') {
86 if ($name === 'Lexer') {
90 return $this->deprecationHelperMagicGet($name);
71 __set($name, $value) global() argument
87 __get($name) global() argument
H A Drenderer.php116 * @param string $name Plugin name
121 public function plugin($name, $data, $state = '', $match = '')
124 $plugin = plugin_load('syntax', $name);
570 * @param string $link The link name
581 * @param string $name name for the link
583 public function locallink($hash, $name = null)
591 * @param string|array $title name for the link, array for media file argument
601 * @param string|array $title name fo
115 plugin($name, $data, $state = '', $match = '') global() argument
522 locallink($hash, $name = null) global() argument
780 _simpleTitle($name) global() argument
[all...]

12345678910>>...16