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 101 – 125 of 391) sorted by relevance

12345678910>>...16

/dokuwiki/lib/plugins/extension/helper/
H A Dgui.php54 foreach ($pluginlist as $name) {
55 $extension->setExtension($name);
87 foreach ($tpllist as $name) {
88 $extension->setExtension("template:$name");
136 foreach ($result as $name) {
137 $extension->setExtension($name);
H A Dextension.php68 * Set the name of the extension this instance shall represents, triggers loading the local and remote data
240 * Get the name of the installation directory
242 * @return string The name of the installation directory
262 * Get the display name of the extension
264 * @return string The display name
268 if (!empty($this->localInfo['name'])) return $this->localInfo['name'];
269 if (!empty($this->remoteInfo['name'])) return $this->remoteInfo['name'];
274 * Get the author name o
[all...]
/dokuwiki/lib/plugins/info/
H A Dsyntax.php138 [$name, /* part */] = explode('_', $p, 2);
139 $plginfo[$name] = $po->getInfo();
147 $renderer->externallink($info['url'], $info['name']);
180 $hid = $this->addToToc($info['name'], 2, $renderer);
181 $doc = '<h2><a name="' . $hid . '" id="' . $hid . '">' . hsc($info['name']) . '</a></h2>';
187 $title = '$' . $p . '->' . $method['name'] . '()';
189 $doc .= '<h3><a name="' . $hid . '" id="' . $hid . '">' . hsc($title) . '</a></h3>';
/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/lib/plugins/config/
H A Dadmin.php95 echo '<div class="no"><input type="hidden" name="id" value="' . $ID . '" /></div>';
190 echo '<input type="hidden" name="do" value="admin" />';
191 echo '<input type="hidden" name="page" value="config" />';
194 echo '<input type="hidden" name="save" value="1" />';
195 echo '<button type="submit" name="submit" accesskey="s">' . $lang['btn_save'] . '</button>';
257 $name = $setting->prompt($this);
258 $toc[] = html_mktocitem($setting->getKey(), $name, 2);
/dokuwiki/lib/plugins/acl/
H A Dadmin.php357 '<input type="text" name="acl_w" class="edit" value="%s" />',
367 echo '<input type="hidden" name="ns" value="' . hsc($this->ns) . '" />';
368 echo '<input type="hidden" name="id" value="' . hsc($ID) . '" />';
369 echo '<input type="hidden" name="do" value="admin" />';
370 echo '<input type="hidden" name="page" value="acl" />';
371 echo '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
423 echo '<button type="submit" name="cmd[save]">' . $lang['btn_save'] . '</button>';
425 echo '<button type="submit" name="cmd[save]">' . $lang['btn_update'] . '</button>';
426 echo '<button type="submit" name="cmd[del]">' . $lang['btn_delete'] . '</button>';
642 echo '<input type="hidden" name
763 makeCheckboxes($setperm, $ispage, $name) global() argument
[all...]
/dokuwiki/inc/
H A DManifest.php17 if (empty($manifest['name'])) {
18 $manifest['name'] = $conf['title'];
H A DAjax.php22 * @param string $call name of the ajax call
67 $name = $title;
71 $name = noNS($id) . ' (' . $ns . ')';
73 $name = $id;
76 echo '<li>' . html_wikilink(':' . $id, $name) . '</li>';
276 $id = $INPUT->post->str('mediaid', $_FILES['qqfile']['name']);
434 $name = $lang['upperns'];
436 $name = hsc($item['id']);
439 echo '<a href="' . $link . '" title="' . hsc($item['id']) . '" class="wikilink1">' . $name . '</a>';
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 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 Dtemplate.php250 $head['meta'][] = ['name' => 'generator', 'content' => 'DokuWiki'];
281 'name' => 'theme-color',
342 $head['meta'][] = ['name' => 'robots', 'content' => 'index,follow'];
344 $head['meta'][] = ['name' => 'robots', 'content' => 'noindex,nofollow'];
352 $head['meta'][] = ['name' => 'robots', 'content' => 'noindex,follow'];
355 $head['meta'][] = ['name' => 'robots', 'content' => 'index,follow'];
357 $head['meta'][] = ['name' => 'robots', 'content' => 'noindex,nofollow'];
364 $head['meta'][] = ['name' => 'keywords', 'content' => implode(',', $INFO['meta']['subject'])];
366 $head['meta'][] = ['name' => 'keywords', 'content' => str_replace(':', ',', $ID)];
473 * @param string $name
421 tpl_link($url, $name, $more = '', $return = false) global() argument
442 tpl_pagelink($id, $name = null, $return = false) global() argument
[all...]
H A Dmail.php59 if (!empty($USERINFO['name'])) {
60 $replace['@NAME@'] = $USERINFO['name'];
62 $replace['@NAME@'] = '';
/dokuwiki/vendor/composer/
H A DInstalledVersions.php31 * @psalm-var array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}|array{}|null
42 * @psalm-var array<string, array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
78 foreach ($installed['versions'] as $name => $package) {
80 $packagesByType[] = $name;
91 * This also returns true if the package name is provided or replaced by another package
246 * @psalm-return array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}
260 * @psalm-return array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}
283 * @psalm-return list<array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>}>
306 * @psalm-param array{root: array{name: string, pretty_version: string, version: string, reference: string|null, type: string, install_path: string, aliases: string[], dev: bool}, versions: array<string, array{pretty_version?: string, version?: string, reference?: string|null, type?: string, install_path?: string, aliases?: string[], dev_requirement: bool, replaced?: string[], provided?: string[]}>} $data
316 * @psalm-return list<array{root: array{name
[all...]
/dokuwiki/vendor/splitbrain/php-archive/
H A Dphpunit.xml12 <testsuite name="Test Suite">
/dokuwiki/vendor/marcusschwarz/lesserphp/
H A Dlessc.inc.php
/dokuwiki/lib/plugins/authad/adLDAP/classes/
H A DadLDAPComputers.php59 * @param string $computerName The name of the computer
81 * @param string $computerName The name of the computer
102 * @param string $computerName The name of the computer
128 * @param string $computerName The name of the computer
/dokuwiki/lib/scripts/
H A Dbehaviour.js122 * This includes a workaround a weird behaviour when the submit button has a name
161 $list = $form.find("input[name='sub_style'][value='list']");
162 $digest = $form.find("input[name='sub_style'][value='digest']");
164 $form.find("input[name='sub_target']")
191 var $all = jQuery('input[type="checkbox"][name="rev2[]"]', $revisions);
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingLicense.php19 $this->lang[$this->key . '_o_' . $key] = $data['name']; // stored in setting
/dokuwiki/lib/scripts/jquery/
H A Djquery.cookie.js87 var name = decode(parts.shift());
90 if (key && key === name) {
98 result[name] = cookie;
/dokuwiki/inc/Ui/
H A DDiff.php68 * @param string|array $prefs a key name or key-value pair(s)
79 foreach ($prefs as $name => $value) {
80 $this->preference[$name] = $value;
/dokuwiki/vendor/openpsa/universalfeedcreator/lib/Creator/
H A DGPXCreator.php39 <name>".substr(htmlspecialchars(strip_tags($this->items[$i]->title)), 0, 6)."</name>
/dokuwiki/vendor/geshi/geshi/src/geshi/
H A Dprogress.php152 'GET-BYTES-AVAILABLE','GET-CALLBACK-PROC-CONTEXT','GET-CALLBACK-PROC-NAME','GET-CGI-LIST',
156 'GET-ERROR-ROW ','GET-FILE-NAME ','GET-FILE-OFFSET ','GET-FIRST',
157 'GET-GREEN-VALUE','GET-HEADER-ENTRY','GET-INDEX-BY-NAMESPACE-NAME','GET-INDEX-BY-QNAME',
165 'GET-TYPE-BY-NAMESPACE-NAME','GET-TYPE-BY-QNAME','GET-URI-BY-INDEX','GET-VALUE-BY-INDEX',
166 'GET-VALUE-BY-NAMESPACE-NAME','GET-VALUE-BY-QNAME','GET-WAIT-STATE','IMPORT-NODE',
238 'PDBNAME','PROC-HANDLE','PROC-STATUS','PROGRAM-NAME',
266 'BUFFER-HANDLE','BUFFER-LINES','BUFFER-NAME','BUFFER-VALUE',
267 'BYTES-READ','BYTES-WRITTEN','CACHE','CALL-NAME',
276 'COM-HANDLE','COMPLETE','CONFIG-NAME','CONTEXT-HELP',
285 'DDE-ITEM','DDE-NAME','DD
[all...]
/dokuwiki/lib/plugins/authad/
H A Dauth.php184 * name string full name of the user
191 * dn string distinguished name (DN)
228 $info['name'] = $result[0]['displayname'][0];
318 * Normalizes domain parts, does not modify the user name itself (unlike cleanGroup)
375 if (isset($filter['name'])) {
376 $result .= ')(displayname=*' . $adldapUtils->ldapSlashes($filter['name']) . '*';
377 unset($filter['name']);
455 if (isset($filter['name'])) {
456 $result .= 'name
[all...]
/dokuwiki/vendor/splitbrain/php-archive/src/
H A DFileInfo.php43 * @param string $name
47 public function __call($name, $arguments) argument
49 if($name === 'match') {
51 return call_user_func_array([$this, $name], $arguments);
54 trigger_error('Call to undefined method FileInfo::'.$name.'()', E_USER_ERROR);
H A DTar.php265 * @param string|FileInfo $fileinfo either the name to us in archive (string) or a FileInfo oject with all meta data, empty to take from original
320 * @param string|FileInfo $fileinfo either the name to us in archive (string) or a FileInfo oject with all meta data
521 * @param string $name
530 protected function writeRawFileHeader($name, $uid, $gid, $perm, $size, $mtime, $typeflag = '') argument
534 $namelen = strlen($name);
536 $file = basename($name);
537 $dir = dirname($name);
542 $this->writebytes(pack("a512", substr($name, $s, 512)));
544 $name = substr($name,
[all...]

12345678910>>...16