Home
last modified time | relevance | path

Searched refs:preference (Results 1 – 9 of 9) sorted by relevance

/dokuwiki/inc/Ui/
H A DDiff.php24 protected $preference = []; variable in dokuwiki\\Ui\\Diff
66 * Gets or Sets preference of the Ui\Diff object
72 public function preference($prefs = null, $value = null) function in dokuwiki\\Ui\\Diff
76 $this->preference[$prefs] = $value;
80 $this->preference[$name] = $value;
85 return $this->preference;
H A DMediaDiff.php40 // init preference
41 $this->preference['fromAjax'] = false; // see dokuwiki\Ajax::callMediadiff()
42 $this->preference['showIntro'] = false;
43 $this->preference['difftype'] = 'both'; // diff view type: both, opacity or portions
68 $this->preference['difftype'] = $INPUT->str('difftype');
112 $this->preference['difftype'] = 'both';
137 if ($this->preference['showIntro']) echo p_locale_xhtml('diff');
140 if ($this->is_img && !$this->preference['fromAjax']) {
145 switch ($this->preference['difftype']) {
156 if ($this->is_img && !$this->preference['fromAja
[all...]
H A DPageDiff.php41 // init preference
42 $this->preference['showIntro'] = true;
43 $this->preference['difftype'] = 'sidebyside'; // diff view type: inline or sidebyside
113 // read preference from DokuWiki cookie. PageDiff only
117 $this->preference['difftype'] = $mode;
219 if ($this->preference['showIntro']) echo p_locale_xhtml('diff');
231 echo '<table class="diff diff_' . hsc($this->preference['difftype']) . '">';
234 switch ($this->preference['difftype']) {
312 ->val($this->preference['difftype'])
476 $form->setHiddenField('difftype', $this->preference['difftyp
[all...]
H A DPageConflict.php60 (new PageDiff($INFO['id']))->compareWith($this->text)->preference('showIntro', false)->show();
H A DPageDraft.php35 (new PageDiff($INFO['id']))->compareWith($text)->preference('showIntro', false)->show();
/dokuwiki/inc/Action/
H A DDiff.php39 (new PageDiff($INFO['id']))->preference('showIntro', true)->show();
/dokuwiki/inc/
H A DAjax.php262 (new MediaDiff($image))->preference('fromAjax', true)->show();
H A Dhtml.php564 (new PageDiff($INFO['id']))->compareWith($text)->preference([
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG347 - Fixed missing check for comment_regexp preference in HardQuotes (BenBE)