blob: 504fad068ea82897c58f753ae78d6a6800692e61 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
<?php
namespace dokuwiki\Ui;
use dokuwiki\Extension\Event;
/**
* DokuWiki PageView Interface
*
* @package dokuwiki\Ui
*/
class PageView extends Ui
{
protected $text;
/**
* PageView Ui constructor
*
* @param null|string $text wiki text or null for showing $ID
*/
public function __construct($text = null)
{
$this->text = $text;
}
/**
* Show a wiki page
*
* @return void
* @author Andreas Gohr <andi@splitbrain.org>
*
* @triggers HTML_SHOWREV_OUTPUT
*/
public function show()
{
global $ID;
global $REV;
global $HIGH;
global $INFO;
global $DATE_AT;
//disable section editing for old revisions or in preview
if ($this->text !== null || $REV) {
$secedit = false;
} else {
$secedit = true;
}
if ($this->text !== null) {
//PreviewHeader
echo '<br id="scroll__here" />';
// print intro for preview
echo p_locale_xhtml('preview');
echo '<div class="preview"><div class="pad">';
$html = html_secedit(p_render('xhtml', p_get_instructions($this->text), $info), $secedit);
if ($INFO['prependTOC']) $html = tpl_toc(true) . $html;
echo $html;
echo '<div class="clearer"></div>';
echo '</div></div>';
} else {
if ($REV || $DATE_AT) {
// print intro for old revisions
$data = ['rev' => &$REV, 'date_at' => &$DATE_AT];
Event::createAndTrigger('HTML_SHOWREV_OUTPUT', $data, [$this, 'showrev']);
}
$html = p_wiki_xhtml($ID, $REV, true, $DATE_AT);
$html = html_secedit($html, $secedit);
if ($INFO['prependTOC']) $html = tpl_toc(true) . $html;
$html = html_hilight($html, $HIGH);
echo $html;
}
}
/**
* Show a revision warning
*
* @author Szymon Olewniczak <dokuwiki@imz.re>
*/
public function showrev()
{
echo p_locale_xhtml('showrev');
}
}
|