Lines Matching +full:- +full:p
23 $this->setupLocale();
56 echo $this->locale_xhtml('intro');
58 $this->printSearchForm();
60 if (is_array($INPUT->param('revert')) && checkSecurityToken()) {
61 $this->revertEdits($INPUT->arr('revert'), $INPUT->str('filter'));
62 } elseif ($INPUT->has('filter')) {
63 $this->listEdits($INPUT->str('filter'));
74 echo '<label>' . $this->getLang('filter') . ': </label>';
75 …echo '<input type="text" name="filter" class="edit" value="' . hsc($INPUT->str('filter')) . '" /> …
77 echo '<span>' . $this->getLang('note1') . '</span>';
87 echo '<p>' . $this->getLang('revstart') . '</p>';
93 // find the last non-spammy revision
96 $old = $pagelog->getRevisions(0, $this->max_revs);
106 … printf('<li><div class="li">' . $this->getLang('reverted') . '</div></li>', $id, $REV);
109 printf('<li><div class="li">' . $this->getLang('removed') . '</div></li>', $id);
116 echo '<p>' . $this->getLang('revstop') . '</p>';
131 $recents = getRecents(0, $this->max_lines);
150 $p = [];
151 $p['src'] = DOKU_BASE . 'lib/images/diff.png';
152 $p['width'] = 15;
153 $p['height'] = 11;
154 $p['title'] = $lang['diff'];
155 $p['alt'] = $lang['diff'];
156 $att = buildAttributes($p);
161 $p = [];
162 $p['src'] = DOKU_BASE . 'lib/images/history.png';
163 $p['width'] = 12;
164 $p['height'] = 14;
165 $p['title'] = $lang['btn_revs'];
166 $p['alt'] = $lang['btn_revs'];
167 $att = buildAttributes($p);
186 echo '<p>';
187 echo '<button type="submit">' . $this->getLang('revert') . '</button> ';
188 printf($this->getLang('note2'), hsc($filter));
189 echo '</p>';