Home
last modified time | relevance | path

Searched refs:show_changes (Results 1 – 3 of 3) sorted by last modified time

/dokuwiki/inc/Action/
H A DRecent.php29 $show_changes = $INPUT->str('show_changes');
30 if (!empty($show_changes)) {
31 set_doku_pref('show_changes', $show_changes);
32 $this->showType = $show_changes;
34 $this->showType = get_doku_pref('show_changes', 'both');
/dokuwiki/inc/Ui/
H A DRecent.php18 protected $show_changes; variable in dokuwiki\\Ui\\Recent
24 * @param string $show_changes type of changes to show; 'pages', 'mediafiles', or 'both'
26 public function __construct($first = 0, $show_changes = 'both') argument
29 $this->show_changes = $show_changes;
123 if ($this->show_changes == 'mediafiles' && $conf['mediarevisions']) {
125 } elseif ($this->show_changes == 'pages') {
224 $form->addDropdown('show_changes', $options, $lang['changes_type'])
225 ->val($this->show_changes)->addClass('quickselect');
/dokuwiki/inc/
H A Dhtml.php360 * @param string $show_changes
363 function html_recent($first = 0, $show_changes = 'both')
366 (new Recent($first, $show_changes))->show();
340 html_recent($first = 0, $show_changes = 'both') global() argument