Home
last modified time | relevance | path

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

1234

/dokuwiki/inc/Action/
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 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 DLogout.php37 global $ID;
43 $lockedby = checklock($ID);
45 unlock($ID);
50 send_redirect(wl($ID, ['do' => 'login'], true, '&'));
H A DCancel.php22 global $ID;
23 unlock($ID);
H A DShow.php33 global $ID;
34 unlock($ID);
H A DSource.php28 global $ID;
32 $TEXT = rawWiki($ID, $REV);
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 DRevert.php34 global $ID;
43 $text = rawWiki($ID, $REV);
54 saveWikiText($ID, $text, $sum, false);
H A DDraftdel.php32 global $INFO, $ID;
33 $draft = new Draft($ID, $INFO['client']);
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 DPreview.php40 global $ID, $INFO;
41 $draft = new Draft($ID, $INFO['client']);
H A DLocked.php38 global $ID;
43 $locktime = filemtime(wikiLockFN($ID));
/dokuwiki/lib/plugins/usermanager/lang/zh/
H A Dimport.txt
/dokuwiki/lib/plugins/usermanager/lang/ko/
H A Dimport.txt4 열은 다음과 같이 포함해야 합니다: 사용자 ID, 실명, 이메일 주소와 그룹.
/dokuwiki/lib/plugins/usermanager/lang/ja/
H A Dimport.txt
/dokuwiki/inc/Ui/
H A DSubscribe.php25 global $ID;
42 if ($sub['target'] !== $ID) {
52 $ID,
71 $ns = getNS($ID) . ':';
73 $ID => '<code class="page">' . prettyprint_id($ID) . '</code>',
85 $form->setHiddenField('id', $ID);
H A DIndex.php48 global $ID;
52 $ns = getNS($ID);
76 global $ID, $conf;
79 $nofollow = ($ID != $conf['start'] || $conf['sitemap']) ? 'rel="nofollow"' : '';
86 $link = wl($ID, 'idx=' . rawurlencode($item['id']));
H A DBacklinks.php22 global $ID;
28 $data = ft_backlinks($ID);
H A DRecent.php46 global $ID;
56 if (getNS($ID) != '') {
58 . sprintf($lang['recent_global'], getNS($ID), wl('', 'do=recent'))
63 $form = new Form(['id' => 'dw__recent', 'method' => 'GET', 'action' => wl($ID), 'class' => 'changes']);
67 $form->setHiddenField('id', $ID);
120 global $ID, $conf;
135 $recents = getRecents($first, $conf['recent'] + 1, getNS($ID), $flags);
138 $recents = getRecents($first, $conf['recent'] + 1, getNS($ID), $flags);
/dokuwiki/inc/Menu/Item/
H A DMedia.php15 global $ID;
19 $this->params['ns'] = getNS($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 DBack.php16 global $ID;
19 $parent = tpl_getparent($ID);
/dokuwiki/inc/
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/lib/plugins/popularity/lang/uk/
H A Dintro.txt5 Ви можете повторно відсилати відгуки час від часу, щоб повідомляти розробників про розвиток вашої ДокуВікі. Повторні відгуки будуть ідентифіковані по анонімному ID.

1234