Home
last modified time | relevance | path

Searched refs:ID (Results 26 – 50 of 1363) sorted by relevance

12345678910>>...55

/plugin/issuelinks/_test/
H A DhandleIssueLinkSyntax.test.php27 global $ID;
28 $ID = 'testpage';
62 global $ID, $REV;
63 $ID = 'testpage_oldnew';
64 saveWikiText($ID,'{{jira>SPR-281}} {{jira>TW-7}}','test summary');
65 $REV = filemtime(wikiFN($ID))+1;
86 global $ID;
87 $ID = 'testpage2';
88 saveWikiText($ID,'page must exist for m_filetime','test summary');
/plugin/davcal/syntax/
H A Dcalendar.php52 global $ID;
53 $data = array('name' => $ID,
75 $lastid = $ID;
129 $data['id'] = array($ID => null);
139 if(($id === $ID) || (strpos($id, 'webdav://') === 0))
146 $calid = $this->hlp->getCalendarIdForPage($ID);
157 if(in_array($ID, array_keys($data['id'])))
164 $this->hlp->setCalendarColorForPage($data['id'][$ID], $ID);
165 $this->hlp->enableCalendarForPage($ID);
168 p_set_metadata($ID, array('plugin_davcal' => $data));
[all …]
/plugin/blogtng/action/
H A Dlinkback.php57 global $ID;
63 'rdf:about="' . wl($ID, '', true) . '"' . NL .
64 'dc:identifier="' . wl($ID, '', true) . '"' . NL .
65 'dc:title="' . tpl_pagetitle($ID, true) . '"' . NL .
66 … 'trackback:ping="' . DOKU_URL . 'lib/plugins/blogtng/exe/trackback.php/' . $ID . '" />' . NL .
79 global $ID;
84 'href' => DOKU_URL . 'lib/plugins/blogtng/exe/pingback.php/' . $ID
98 global $ID;
101 $event->data[] = 'X-Pingback: ' . DOKU_URL . 'lib/plugins/blogtng/exe/pingback.php/' . $ID;
/plugin/structpublish/helper/
H A Dpublish.php32 global $ID;
35 if (!$this->dbHelper->checkAccess($ID, [$action])) {
39 $revision = new Revision($ID, $INFO['currentrev']);
63 global $ID;
67 $tables = $schemaAssignments->getPageAssignments($ID);
77 $sqlite->query("UPDATE data_$table SET published = 0 WHERE pid = ?", [$ID]);
78 $sqlite->query("UPDATE multi_$table SET published = 0 WHERE pid = ?", [$ID]);
83 [$ID, $INFO['currentrev']]
87 [$ID, $INFO['currentrev']]
/plugin/searchtext/
H A Daction.php30 global $ID;
32 $prevID = $ID;
33 $ID = $event->data['page'];
35 $ID = $prevID;
42 global $ID;
44 $prevID = $ID;
45 $ID = $event->data['id'];
47 $ID = $prevID;
/plugin/labeled/action/
H A Dchange.php36 global $ID;
58 global $ID;
59 $this->hlp->deleteLabel($_REQUEST['label'], $ID);
64 global $ID;
65 $this->hlp->removeLabel($_REQUEST['label'], $ID);
71 global $ID;
73 $this->hlp->addLabel($label, $ID);
79 global $ID;
82 $this->hlp->setLabels($labels, $ID);
/plugin/inlineedit/
H A Dsyntax.php19 global $ID;
20 if(array_key_exists($ID,$this->_itemPos)) {
21 return $this->_itemPos[$ID]++;
23 $this->_itemPos[$ID] = 1;
28 global $ID;
29 if(array_key_exists($ID,$this->_itemPos)) {
30 $this->_itemPos[$ID];
78 global $ID;
81 'pageid' => $ID,
/plugin/html2pdf/html2pdf/html2ps/data/
H A DLineBreak.txt9506 3013;ID # GETA MARK
9535 3030;ID # WAVY DASH
10137 32CC;ID # SQUARE HG
10139 32CE;ID # SQUARE EV
10302 3372;ID # SQUARE DA
10303 3373;ID # SQUARE AU
10305 3375;ID # SQUARE OV
10306 3376;ID # SQUARE PC
10307 3377;ID # SQUARE DM
10310 337A;ID # SQUARE IU
[all …]
/plugin/pagebuttons/
H A Daction.php68 global $ID;
73 || !$this->canDelete($ID)
89 global $ID;
95 || !page_exists($ID)
96 …|| ($this->getConf('onlyShowNewButtonsOnStart') && !(substr_compare($ID, ":".$conf['start'], -strl…
112 global $ID;
118 || !page_exists($ID)
119 …|| ($this->getConf('onlyShowNewButtonsOnStart') && !(substr_compare($ID, ":".$conf['start'], -strl…
151 global $ID, $INFO, $lang;
161 saveWikiText($ID, null, $lang['deleted']);
/plugin/pageredirect/
H A Daction.php36 global $ID, $ACT, $REV;
43 $metadata = $this->get_metadata($ID);
68 if(@filemtime(metaFN($ID, '.meta')) < @filemtime(wikiFN($ID))) {
86 $this->flash_message($ID);
143 * @param string $ID page id from where the redirect originated
145 private function flash_message($ID) { argument
153 $_SESSION[DOKU_COOKIE]['redirect'] = $ID;
169 $ID = isset($_SESSION[DOKU_COOKIE]['redirect']) ? $_SESSION[DOKU_COOKIE]['redirect'] : null;
170 if(!$ID) {
184 get_metadata($ID) global() argument
[all...]
/plugin/dokusioc/
H A Daction.php263 global $ID;
266 $userinfo = getDwUserInfo($ID, $this);
284 …$ID, normalizeUri($exporter->siocURL('user', $ID)), $userinfo['user'], $userinfo['name'], $userinf…
296 global $ID, $INFO, $REV, $conf;
310 $ID, // id
318 rawWiki($ID, $REV) // body (content)
354 $backlinks = ft_backlinks($ID);
363 $changelog = new PageChangeLog($ID);
463 global $ID, $INFO, $conf;
467 if (isHiddenPage($ID)) {
[all …]
/plugin/tabinclude/
H A Dajax.php21 global $ID;
30 $ID=$_POST['page']; variable
31 if(auth_quickaclcheck($ID) < AUTH_READ) die('No permission to read');
33 $link = $ID;
34 if(strpos($ID,":")===0) $link = substr($ID,1);
43 tpl_include_page($ID,true);
/plugin/likeit/
H A Dsyntax.php21 global $ID;
22 if(array_key_exists($ID,$this->_itemPos)) {
23 return $this->_itemPos[$ID]++;
25 $this->_itemPos[$ID] = 1;
30 global $ID;
31 if(array_key_exists($ID,$this->_itemPos)) {
32 $this->_itemPos[$ID];
70 global $ID;
74 $ID,
/plugin/eventline/
H A Daction.php44 global $ID;
47 if (p_get_metadata($ID, 'plugin eventline')) {
85 global $ID;
93 if ( auth_quickaclcheck($ID) < AUTH_READ ) return false;
100 $metadata = p_get_metadata($ID, $key, false);
111 $html = iconv('UTF-8', 'ASCII//TRANSLIT', pullInXmlData($ID, $wikihtml));
114 $html = pullInXmlData($ID, $wikihtml);
118 $fp = fopen(DOKU_INC . 'data/pages/'. str_replace(":", "/", $ID) . '.xml', 'w');
/plugin/pdftools/
H A Daction.php25 global $ID;
27 if ($ID=="start") return;
33 strpos($ID,'start')!==false &&
34 (strlen($ID)-strpos($ID,'start'))==5) $show_button = false;
41 $page = rawwiki($ID);
58 …ref='doku.php?id=".$ID."&do=export_pdf&toc=0&tpl=".($t[0])."&rev=".($_GET['rev'])."'\"><a style='c…
/plugin/cleanoldips/_test/
H A Dcleaning.test.php19 global $ID;
20 $ID = 'some:page';
21 $changelogFN = metaFN($ID, '.changes');
38 global $ID;
40 $actualChangelogContent = file_get_contents(metaFN($ID, '.changes'));
87 global $ID;
91 …tPosition = $changelogCleaner->validateStartPosition($inputStartPosition, metaFN($ID, '.changes'));
/plugin/gdpr/_test/
H A DCleanIp.test.php21 global $ID;
22 $ID = 'some:page';
23 $changelogFN = metaFN($ID, '.changes');
40 global $ID;
42 $actualChangelogContent = file_get_contents(metaFN($ID, '.changes'));
89 global $ID;
93 …tPosition = $changelogCleaner->validateStartPosition($inputStartPosition, metaFN($ID, '.changes'));
/plugin/projects/lib/
H A Dproject.php37 global $ID;
38 $project_ID = getNS($ID);
61 private $ID = NULL; variable in Project
83 $this->ID = $ID;
126 return $this->ID . ":$name";
130 $parent = getNS($this->ID);
318 global $ID;
338 global $ID;
340 $save_ID = $ID;
344 $ID = $this->ID . ":" . $id;
[all …]
/plugin/newpagetemplate/
H A Daction.php73 global $ID;
91 $file = noNS($ID);
112 '@ID@',
132 $ID,
133 getNS($ID),
134 curNS($ID),
135 $ucfirst(curNS($ID)),
136 $ucwords(curNS($ID)),
137 $ucupper(curNS($ID)),
189 global $ID,
[all...]
/plugin/404manager/
H A Daction.php122 global $ID;
190 $startPage = getNS($ID) . ':' . curNS($ID);
382 global $ID;
391 $pageName = noNS($ID);
414 global $ID;
417 $perm = auth_quickaclcheck($ID);
419 $perm = auth_aclcheck($ID, '', null);
438 global $ID;
485 global $ID;
645 global $ID;
[all …]
/plugin/bureaucracy/helper/
H A Dactiontemplate.php82 global $ID;
107 global $ID;
108 $ns = getNS($ID);
167 global $ID;
264 global $ID;
275 'form' => $ID,
332 global $ID;
333 $backupID = $ID;
343 foreach ($pages as $ID) {
356 $data[] = array('id' => $ID, 'level' => 1 + substr_count($ID, ':'), 'type' => 'f');
[all …]
/plugin/task/syntax/
H A Dtask.php23 global $ID;
47 $current = $my->readTask($ID);
49 $my->writeTask($ID, $task);
52 $my->writeTask($ID, $task);
59 global $ID;
148 global $ID;
151 $this->task = $this->my->readTask($ID);
201 global $ID, $lang;
209 $form->setHiddenField ('id', $ID);
240 global $ID;
[all …]
/plugin/tagadd/
H A Daction.php27 global $ID;
31 $perm = auth_quickaclcheck($ID);
47 global $ID;
49 $perm = auth_quickaclcheck($ID);
73 global $ID;
112 $form = $this->createForm($ID, $ns);
129 $ns=explode(':',$ID);
155 * @param string $ID site id
158 protected function createForm($ID,$ns) argument
162 $siteTags = $Htagfilter->getTagsBySiteID($ID);
[all …]
/plugin/linkback/action/
H A Ddisplay.php43 global $ID, $INFO;
48 $file = metaFN($ID, '.linkbacks');
96 global $ID;
112 echo '<span class="linkback_trackbackurl">' . DOKU_URL . 'lib/plugins/linkback/exe/trackback.php/' . $ID . '</span>';
215 global $ID;
219 <input type="hidden" name="id" value="<?php echo $ID ?>" />
238 global $ID;
244 $file = metaFN($ID, '.linkbacks');
272 global $ID;
274 $file = metaFN($ID, '
[all...]
/plugin/translation/
H A Daction.php65 // $ID is not set yet, so we have to get it ourselves
68 // For ID based access, get the language from the ID, try request param or session otherwise
81 // ensure a valid locale was given by using it as fake ID
135 global $ID;
138 if (!$this->helper->istranslatable($ID)) return;
139 $locale = $this->helper->getLangPart($ID ?? '');
161 global $ID;
165 if ($ID == $conf['start'] && $ACT == 'show') {
169 if (cleanID($translatedStartpage) !== cleanID($ID)) {
[all...]

12345678910>>...55