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 51 – 75 of 391) sorted by relevance

12345678910>>...16

/dokuwiki/lib/scripts/
H A Dfileuploader.js129 qq.hasClass = function(element, name){ argument
130 var re = new RegExp('(^| )' + name + '( |$)');
133 qq.addClass = function(element, name){ argument
134 if (!qq.hasClass(element, name)){
135 element.className += ' ' + name;
138 qq.removeClass = function(element, name){ argument
139 var re = new RegExp('(^| )' + name + '( |$)');
403 var name, size; variable
408 name = file.value.replace(/.*(\/|\\)/, "");
411 name
436 r(name, replacement) global() argument
761 name: 'file', global() property in qq.UploadButton._options
[all...]
/dokuwiki/inc/Subscriptions/
H A DRegistrationSubscriptionSender.php10 * @param string $login login name of the new user
11 * @param string $fullname full name of the new user
/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 DSource.php23 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
193 $name = null;
196 if (isset($author['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['name'][0]['data'])) {
197 $name = $this->sanitize($author['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_10]['name'][0]['data'], \SimplePie\SimplePie::CONSTRUCT_TEXT);
205 if ($name !== null || $email !== null || $uri !== null) {
206 $authors[] = $this->registry->create(Author::class, [$name, $uri, $email]);
210 $name = null;
213 if (isset($author[0]['child'][\SimplePie\SimplePie::NAMESPACE_ATOM_03]['name'][0]['data'])) {
214 $name
[all...]
/dokuwiki/lib/plugins/extension/
H A Dscript.js54 var extension = $btn.attr('name').split('[')[2];
69 sectok: $btn.parents('form').find('input[name=sectok]').val()
128 $extlist.toggleClass( this.name );
129 DokuCookie.setValue('ext_'+this.name, $extlist.hasClass(this.name) ? '1' : '0');
135 var $input = jQuery( '<input />', { type: 'checkbox', name: chkName })
/dokuwiki/vendor/simplepie/simplepie/
H A Dautoloader.php21 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
54 * @param string $class The fully-qualified class name.
72 // get the relative class name
76 // separators with directory separators in the relative class name, append
115 * @param string $class The name of the class to attempt to load.
/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/inc/Extension/
H A DPluginTrait.php38 'name' => $ext . ' plugin',
71 public function loadHelper($name, $msg = true)
73 $obj = plugin_load('helper', $name);
74 if (is_null($obj) && $msg) msg("Helper plugin $name is not available or invalid.", -1);
243 public function email($email, $name = '', $class = '', $more = '')
245 if (!$email) return $name;
247 if (!$name) $name = $email;
249 return "<a href='mailto:$email' $class title='$email' $more>$name</a>";
47 loadHelper($name, $msg = true) global() argument
219 email($email, $name = '', $class = '', $more = '') global() argument
/dokuwiki/inc/Menu/
H A DMobileMenu.php66 $html .= '<input type="hidden" name="id" value="' . $ID . '" />';
67 if ($REV) $html .= '<input type="hidden" name="rev" value="' . $REV . '" />';
69 $html .= '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
72 $html .= '<select name="do" class="edit quickselect" title="' . $lang['tools'] . '">';
/dokuwiki/inc/
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 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/vendor/simplepie/simplepie/src/HTTP/
H A DParser.php23 * * Neither the name of the SimplePie Team nor the names of its contributors may be used
101 private const STATE_NAME = 'name';
148 * Name of the hedaer currently being parsed
152 protected $name = ''; variable in SimplePie\\HTTP\\Parser
272 if ($this->name !== '' && $this->value !== '') {
273 $this->name = strtolower($this->name);
275 if (isset($this->headers[$this->name]) && $this->name !== 'content-type') {
276 $this->headers[$this->name]
297 protected function name() global() function in SimplePie\\HTTP\\Parser
[all...]
/dokuwiki/inc/parser/
H A Dxhtml.php54 * Key 'name': the section name/title
83 if (isset($args[2])) $data['name'] = $args[2];
253 $data['name'] = $text;
824 * @param string $link The link name
843 * @param string $name name for the link
847 public function locallink($hash, $name = null, $returnonly = false)
850 $name = $this->_getLinkTitle($name,
787 locallink($hash, $name = null, $returnonly = false) global() argument
818 internallink($id, $name = null, $search = null, $returnonly = false, $linktype = 'content') global() argument
905 externallink($url, $name = null, $returnonly = false) global() argument
969 interwikilink($match, $name, $wikiName, $wikiUri, $returnonly = false) global() argument
1026 windowssharelink($url, $name = null, $returnonly = false) global() argument
1066 emaillink($address, $name = null, $returnonly = false) global() argument
[all...]
/dokuwiki/lib/plugins/popularity/
H A Dadmin.php32 return $this->getLang('name');
134 . '<textarea class="edit" rows="10" cols="80" readonly="readonly" name="data">'
141 . '<input type="checkbox" name="autosubmit" id="autosubmit" '
145 . '<input type="hidden" name="do" value="admin" />'
146 . '<input type="hidden" name="page" value="popularity" />';
/dokuwiki/lib/plugins/acl/
H A Dremote.php
H A Dplugin.info.txt5 name ACL Manager
/dokuwiki/lib/plugins/logviewer/
H A Dplugin.info.txt5 name logviewer plugin
/dokuwiki/lib/plugins/usermanager/
H A Dplugin.info.txt5 name User 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/tpl/dokuwiki/
H A Dtemplate.info.txt5 name DokuWiki Template
/dokuwiki/lib/plugins/config/
H A Dplugin.info.txt5 name Configuration Manager
/dokuwiki/lib/plugins/styling/
H A Dplugin.info.txt5 name styling plugin
/dokuwiki/lib/plugins/authldap/
H A Dplugin.info.txt5 name LDAP Auth Plugin
/dokuwiki/conf/
H A Dusers.auth.php.dist9 # login:passwordhash:Real Name:email:groups,comma,separated

12345678910>>...16