Home
last modified time | relevance | path

Searched refs:TEXT (Results 1 – 11 of 11) sorted by last modified time

/dokuwiki/inc/Ui/
H A DEditor.php37 global $TEXT;
44 // $TEXT has been loaded from page template
47 $check = md5($TEXT);
49 $mod = (md5($TEXT) !== $check);
194 global $TEXT;
207 $data['form']->addTextarea('wikitext', '')->attrs($attr)->val($TEXT)
/dokuwiki/inc/Action/
H A DEdit.php49 global $TEXT;
58 if (!isset($TEXT)) {
61 [$PRE, $TEXT, $SUF] = rawWikiSlices($RANGE, $ID, $REV);
63 $TEXT = rawWiki($ID, $REV);
66 $TEXT = pageTemplate($ID);
H A DSave.php36 global $TEXT;
58 saveWikiText($ID, con($PRE, $TEXT, $SUF, true), $SUM, $INPUT->bool('minor')); //use pretty mode for con
H A DConflict.php32 global $TEXT;
36 $text = con($PRE, $TEXT, $SUF);
H A DSource.php26 global $TEXT;
32 $TEXT = rawWiki($ID, $REV);
H A DPreview.php30 global $TEXT;
32 (new PageView($TEXT))->show();
H A DRedirect.php26 global $TEXT;
36 } elseif ($PRE && preg_match('/^\s*==+([^=\n]+)/', $TEXT, $match)) {
/dokuwiki/inc/
H A Dcommon.php725 global $TEXT;
736 if (!$text) $text = "$PRE $TEXT $SUF $SUM";
H A Dmedia.php672 global $TEXT;
673 $TEXT = io_readFile($file);
/dokuwiki/inc/Remote/
H A DApiCore.php662 global $TEXT;
666 $TEXT = cleanText($text);
669 if (!page_exists($page) && trim($TEXT) == '') {
689 if (page_exists($page) && empty($TEXT) && empty($summary)) {
696 saveWikiText($page, $TEXT, $summary, $isminor);
/dokuwiki/
H A Ddoku.php24 $DATE, $RANGE, $HIGH, $TEXT, $PRE, $SUF, $SUM, $INFO, $JSINFO;
54 $TEXT = cleanText($INPUT->post->str('wikitext'));
52 $TEXT = cleanText($INPUT->post->str('wikitext')); global() variable