Home
last modified time | relevance | path

Searched refs:ID (Results 1 – 25 of 88) sorted by path

1234

/dokuwiki/
H A Ddoku.php23 global $ACT, $INPUT, $QUERY, $ID, $REV, $DATE_AT, $IDX,
43 $ID = getID();
77 $pagelog = new PageChangeLog($ID);
90 wl($ID, ['rev' => $rev_n]),
109 //send 404 for missing pages if configured or ID has special meaning to bots
112 ($conf['send404'] || preg_match('/^(robots\.txt|sitemap\.xml(\.gz)?|favicon\.ico|crossdomain\.xml)$/', $ID)) &&
41 $ID = getID(); global() variable
/dokuwiki/inc/Action/
H A DCancel.php22 global $ID;
23 unlock($ID);
H A DDraftdel.php32 global $INFO, $ID;
33 $draft = new Draft($ID, $INFO['client']);
H A DEdit.php46 global $ID;
61 [$PRE, $TEXT, $SUF] = rawWikiSlices($RANGE, $ID, $REV);
63 $TEXT = rawWiki($ID, $REV);
66 $TEXT = pageTemplate($ID);
81 if (!$DATE) $DATE = @filemtime(wikiFN($ID));
84 $lockedby = checklock($ID);
88 lock($ID);
H A DExport.php40 global $ID;
56 $headers['Content-Disposition'] = 'attachment; filename=' . noNS($ID) . '.txt';
57 $output = rawWiki($ID, $REV);
64 $pre .= ' <title>' . $ID . '</title>' . DOKU_LF;
79 $output = p_wiki_xhtml($ID, $REV, false);
87 $output = p_wiki_xhtml($ID, $REV, false);
90 $output = p_cached_output(wikiFN($ID, $REV), $mode, $ID);
91 $headers = p_get_metadata($ID, "format $mode");
97 $data['id'] = $ID;
[all...]
H A DLocked.php38 global $ID;
43 $locktime = filemtime(wikiLockFN($ID));
H A DLogout.php37 global $ID;
43 $lockedby = checklock($ID);
45 unlock($ID);
50 send_redirect(wl($ID, ['do' => 'login'], true, '&'));
H A DPreview.php40 global $ID, $INFO;
41 $draft = new Draft($ID, $INFO['client']);
H A DRedirect.php28 global $ID;
31 $opts = ['id' => $ID, 'preact' => $ACT];
H A DRevert.php34 global $ID;
43 $text = rawWiki($ID, $REV);
54 saveWikiText($ID, $text, $sum, false);
H A DSave.php33 global $ID;
58 saveWikiText($ID, con($PRE, $TEXT, $SUF, true), $SUM, $INPUT->bool('minor')); //use pretty mode for con
60 unlock($ID);
H A DSearch.php38 global $QUERY, $ID, $conf, $INPUT;
41 if ($ID !== $conf['start'] && !$INPUT->has('q')) {
45 $url = wl($ID, $urlParts, true, '&');
83 global $conf, $INPUT, $QUERY, $ID;
94 if (getNS($ID) !== false) {
95 $nsParts = explode(':', getNS($ID));
H A DShow.php33 global $ID;
34 unlock($ID);
H A DSource.php28 global $ID;
32 $TEXT = rawWiki($ID, $REV);
/dokuwiki/inc/
H A DActionRouter.php207 global $ID;
218 $perm = auth_quickaclcheck($ID);
H A DAjax.php131 global $ID;
135 $ID = cleanID($INPUT->post->str('id'));
136 if (empty($ID)) return;
151 if (!checklock($ID)) {
152 lock($ID);
156 $draft = new Draft($ID, $INFO['client']);
H A DDraft.php22 * @param string $ID the page id for this draft
25 public function __construct($ID, $client)
27 $this->id = $ID;
29 $this->cname = getCacheName("$client\n$ID", '.draft');
30 if (file_exists($this->cname) && file_exists(wikiFN($ID))) {
31 if (filemtime($this->cname) < filemtime(wikiFN($ID))) {
24 __construct($ID, $client) global() argument
/dokuwiki/inc/Form/
H A DForm.php34 global $ID;
42 $self = wl($ID, $get, false, '&'); //attributes are escaped later
/dokuwiki/inc/Menu/Item/
H A DAbstractItem.php63 global $ID;
64 $this->id = $ID;
111 * Basically runs wl() on $id and $params. However if the ID is a hash it is used directly
H A DBack.php16 global $ID;
19 $parent = tpl_getparent($ID);
H A DImgBackto.php15 global $ID;
22 $this->replacement = $ID;
H A DIndex.php16 global $ID;
23 if ($conf['start'] == $ID && !$conf['sitemap']) {
H A DMedia.php15 global $ID;
19 $this->params['ns'] = getNS($ID);
/dokuwiki/inc/Menu/
H A DMobileMenu.php58 global $ID;
66 $html .= '<input type="hidden" name="id" value="' . $ID . '" />';
/dokuwiki/inc/Subscriptions/
H A DSubscriberManager.php104 * @param string $id Page ID, defaults to global $ID
118 global $ID;
122 $id = $ID;
279 * Return the subscription meta file for the given ID

1234