Home
last modified time | relevance | path

Searched refs:id (Results 1 – 25 of 123) sorted by path

12345

/dokuwiki/
H A D.htaccess.dist27 #RewriteRule ^_export/([^/]+)/(.*) doku.php?do=export_$1&id=$2 [QSA,L]
31 #RewriteRule (.*) doku.php?id=$1 [QSA,L]
H A Dfeed.php
/dokuwiki/bin/
H A Dindexer.php74 $this->index($val['id']);
81 * @param string $id
83 protected function index($id)
85 $this->quietecho("$id... ");
86 idx_addPage($id, !$this->quiet, $this->clear);
80 index($id) global() argument
/dokuwiki/conf/
H A Dmysql.conf.php.example161 * %{uid} id of a user dataset
163 * %{gid} id of a group dataset
171 * %{gid} id of a group dataset
177 * The plugin will access the index with the name 'id' so an alias might be
182 $conf['plugin']['authmysql']['getUserID'] = "SELECT uid AS id
193 * %{uid} id of a user dataset
201 * %{uid} id of a user dataset
219 * %{uid} user id that should be updated
234 * %{uid} id of a user dataset
236 * %{gid} id o
[all...]
/dokuwiki/data/
H A Ddeleted.files540 lib/plugins/plugin/lang/id-ni/lang.php
541 lib/plugins/plugin/lang/id/lang.php
721 inc/lang/id/subscribermail.txt
771 inc/lang/id/wordblock.txt
850 lib/plugins/acl/lang/id/intro.txt
/dokuwiki/data/media/wiki/
H A Ddokuwiki.svg3 <linearGradient id="a">
7 <linearGradient id="n" x1="192.04" x2="263.67" y1="262.26" y2="262.26" gradientUnits="userSpaceOnUse">
11 <linearGradient id="p" x1="191.75" x2="255.66" y1="258.92" y2="258.92" gradientUnits="userSpaceOnUse">
15 <linearGradient id="m" x1="184.07" x2="201.41" y1="246.36" y2="246.36" gradientUnits="userSpaceOnUse" xlink:href="#a"/>
16 <linearGradient id="d" x1="162.76" x2="240.85" y1="184.99" y2="289.5" gradientUnits="userSpaceOnUse">
20 <linearGradient id="b" x1="140.16" x2="136.14" y1="303.79" y2="195.87" gradientUnits="userSpaceOnUse">
24 <linearGradient id="c" x1="286.16" x2="185.81" y1="262.29" y2="172.32" gradientUnits="userSpaceOnUse">
28 <linearGradient id="h" x1="213.97" x2="244.79" y1="220.07" y2="265.4" gradientUnits="userSpaceOnUse">
32 <linearGradient id="l" x1="184.31" x2="224.67" y1="241.53" y2="307.53" gradientUnits="userSpaceOnUse">
36 <linearGradient id
[all...]
/dokuwiki/inc/
H A DAjax.php65 foreach ($data as $id => $title) {
69 $ns = getNS($id);
71 $name = noNS($id) . ' (' . $ns . ')';
73 $name = $id;
76 echo '<li>' . html_wikilink(':' . $id, $name) . '</li>';
135 $ID = cleanID($INPUT->post->str('id'));
173 $id = cleanID($INPUT->str('id'));
174 if (empty($id)) return;
179 $draft = new Draft($id,
[all...]
H A DDraft.php16 protected $id;
22 * @param string $ID the page id for this draft
27 $this->id = $ID;
83 'id' => $this->id,
119 "Draft for page $this->id and user $this->client doesn't exist at $this->cname."
15 protected $id; global() variable in dokuwiki\\Draft
/dokuwiki/inc/Cache/
H A DCacheInstructions.php11 * @param string $id page id
14 public function __construct($id, $file)
16 parent::__construct($id, $file, 'i');
15 __construct($id, $file) global() argument
H A DCacheParser.php16 * @param string $id page id
20 public function __construct($id, $file, $mode)
24 if ($id) {
25 $this->page = $id;
21 __construct($id, $file, $mode) global() argument
H A DCacheRenderer.php49 foreach ($metadata['relation']['references'] as $id => $exists) {
50 if ($exists != page_exists($id, '', false)) {
/dokuwiki/inc/ChangeLog/
H A DChangeLog.php15 protected $id; variable in dokuwiki\\ChangeLog\\ChangeLog
24 * @param string $id page id
27 public function __construct($id, $chunk_size = 8192) argument
32 if (!isset($this->cache[$id])) {
33 $this->cache[$id] = [];
36 $this->id = $id;
119 $this->cache[$this->id][$info['date']] ??= $info;
139 * - id
[all...]
H A DMediaChangeLog.php17 return mediaMetaFN($this->id, '.changes');
28 return mediaFN($this->id, $rev);
55 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]);
59 io_saveFile(mediaMetaFN($this->id, '.changes'), $logline, $append = true);
65 $this->cache[$this->id][$this->currentRevision] = $info;
H A DPageChangeLog.php17 return metaFN($this->id, '.changes');
28 return wikiFN($this->id, $rev);
55 if (isset($timestamp)) unset($this->cache[$this->id][$info['date']]);
59 io_saveFile(metaFN($this->id, '.changes'), $logline, true);
65 $this->cache[$this->id][$this->currentRevision] = $info;
H A DRevisionInfo.php30 * - id: page id
42 if (!is_array($info) || !isset($info['id'])) {
110 $id = $this->val('id');
113 return media_printicon($id);
116 return '<img class="icon" src="' . DOKU_BASE . 'lib/images/fileicons/file.png" alt="' . $id . '" />';
176 $id = $this->val('id');
181 $params = ['tab_details' => 'view', 'ns' => getNS($id), 'imag
[all...]
/dokuwiki/inc/Extension/
H A DPluginInterface.php58 * @param string $id id of the string to be retrieved
61 public function getLang($id); argument
67 * @param string $id id of language dependent wiki page
70 public function locale_xhtml($id); argument
76 * @param string $id id of localization file
80 public function localFN($id, $ext = 'txt'); argument
H A DPluginTrait.php113 public function getLang($id)
117 return ($this->lang[$id] ?? '');
123 public function locale_xhtml($id)
125 return p_cached_output($this->localFN($id));
131 public function localFN($id, $ext = 'txt')
135 $file = DOKU_CONF . 'plugin_lang/' . $plugin . '/' . $conf['lang'] . '/' . $id . '.' . $ext;
137 $file = DOKU_PLUGIN . $plugin . '/lang/' . $conf['lang'] . '/' . $id . '.' . $ext;
140 $file = DOKU_PLUGIN . $plugin . '/lang/en/' . $id . '.' . $ext;
89 getLang($id) global() argument
99 locale_xhtml($id) global() argument
107 localFN($id, $ext = 'txt') global() argument
/dokuwiki/inc/File/
H A DMediaFile.php9 protected $id; variable in dokuwiki\\File\\MediaFile
23 * @param string $id
26 public function __construct($id, $rev = '')
28 $this->id = $id; //FIXME should it be cleaned?
29 $this->path = mediaFN($id, $rev);
38 return $this->id;
60 return noNS($this->id);
165 return auth_quickaclcheck(getNS($this->id) . ':*');
25 __construct($id, $rev = '') global() argument
H A DMediaResolver.php11 public function resolveId($id, $rev = '', $isDateAt = false) argument
13 return cleanID(parent::resolveId($id, $rev, $isDateAt));
H A DPageFile.php17 protected $id; variable in dokuwiki\\File\\PageFile
28 * @param string $id
30 public function __construct($id) argument
32 $this->id = $id;
33 $this->changelog = new PageChangeLog($this->id);
39 return $this->id;
45 return wikiFN($this->id, $rev);
50 * similar to function rawWiki($id, $rev = '')
61 : io_readWikiPage($this->getPath($rev), $this->id,
[all...]
H A DPageResolver.php16 public function resolveId($id, $rev = '', $isDateAt = false)
19 $id = (string) $id;
22 if (strpos($id, '#') !== false) {
23 [$id, $hash] = sexplode('#', $id, 2);
29 if ($id !== '') {
30 $id = parent::resolveId($id, $rev, $isDateAt);
31 $id
17 resolveId($id, $rev = '', $isDateAt = false) global() argument
54 resolveStartPage($id, $rev, $isDateAt) global() argument
83 resolveAutoPlural($id, $rev, $isDateAt) global() argument
[all...]
H A DResolver.php27 * @param string $id The ID to resolve
32 public function resolveId($id, $rev = '', $isDateAt = false)
37 if ($conf['useslash']) $id = str_replace('/', ':', $id);
39 $id = str_replace(';', ':', $id);
41 $id = $this->resolvePrefix($id);
42 return $this->resolveRelatives($id);
48 * @param string $id
33 resolveId($id, $rev = '', $isDateAt = false) global() argument
52 resolvePrefix($id) global() argument
82 resolveRelatives($id) global() argument
[all...]
/dokuwiki/inc/Form/
H A DElement.php129 * @param null|string $id
132 public function id($id = null) argument
134 if (strpos($id, '__') === false) {
138 return $this->attr('id', $id);
H A DForm.php41 if (isset($get['id'])) unset($get['id']);
343 $for = $for->id();
H A DInputElement.php67 * @param null|string $id
70 public function id($id = null) argument
72 if ($this->label) $this->label->attr('for', $id);
73 return parent::id($id);

12345