Lines Matching full:echo
162 …echo('<h1>' . ucfirst(PluginUtility::$PLUGIN_NAME) . ' - ' . ucfirst($this->getPluginComponent()) …
164 echo($this->locale_xhtml($relativePath));
184 echo('<div class="level2" >');
185 echo('<div id="form_container" style="max-width: 600px;">');
186 echo('<form action="" method="post">');
187 echo('<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />');
188 echo('<p><b>If the Dokuwiki ID matches the following pattern:</b></p>');
193 …echo('<label for="' . PageRules::MATCHER_NAME . '">(You can use the asterisk (*) character)</label…
194 …echo('<p><input type="text" style="width: 100%;" id="' . PageRules::MATCHER_NAME . '" required="r…
195 echo('<p><b>Then applies this redirect settings:</b></p>');
200 …echo('<label for="' . PageRules::TARGET_NAME . '">Target: (A DokuWiki Id or an URL where you can u…
201 …echo('<p><input type="text" style="width: 100%;" required="required" id="' . PageRules::TARGET_NAM…
202 …echo('<label for="' . PageRules::PRIORITY_NAME . '">Priority: (The order in which rules are applie…
203 …echo('<p><input type="text" id="' . PageRules::PRIORITY_NAME . '." style="width: 100%;" required="…
204 echo('<input type="hidden" name="do" value="admin" />');
206 … echo('<input type="hidden" name="' . PageRules::ID_NAME . '" value="' . $id . '" />');
208 …echo('<input type="hidden" name="page" value="' . $this->getPluginName() . '_' . $this->getPlugin…
209 echo('<p>');
210 …echo('<a class="btn btn-light" href="?do=admin&page=webcomponent_pagerules" > ' . 'Cancel' . ' <a/…
211 …echo('<input class="btn btn-primary" type="submit" name="save" class="button" value="' . 'Save' . …
212 echo('</p>');
213 echo('</form>');
214 echo('</div>');
216 echo('</div>');
221 echo('<h2><a id="pagerules_list">' . 'Rules' . '</a></h2>');
222 echo('<div class="level2">');
224 echo('<form class="pt-3 pb-3" action="" method="post">');
225 echo('<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />');
226 echo(' <input type="hidden" name="do" value="admin" />');
227 …echo(' <input type="hidden" name="page" value="' . $this->getPluginName() . '_' . $this->getPlugi…
228 …echo(' <input type="submit" name="upsert" name="Create a page rule" class="button" value="' . $thi…
229 echo('</form>');
235 echo('<p>No Rules found</p>');
237 echo('<div class="table-responsive">');
239 echo('<table class="table table-hover">');
240 echo(' <thead>');
241 echo(' <tr>');
242 echo(' <th> </th>');
243 echo(' <th>' . $this->getLangOrDefault('Priority', 'Priority') . '</th>');
244 echo(' <th>' . $this->getLangOrDefault('Matcher', 'Matcher') . '</th>');
245 echo(' <th>' . $this->getLangOrDefault('Target', 'Target') . '</th>');
246 echo(' <th>' . $this->getLangOrDefault('NDate', 'Date') . '</th>');
247 echo(' </tr>');
248 echo(' </thead>');
249 echo(' <tbody>');
261 echo(' <tr class="redirect_info">');
262 echo(' <td>');
263 echo(' <form action="" method="post" style="display: inline-block">');
264 … echo('<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />');
265 echo('<button style="background: none;border: 0;">');
266 …echo(inlineSVG(DirectoryLayout::getComboImagesDirectory()->resolve('delete.svg')->toAbsoluteId()));
267 echo('</button>');
268 echo(' <input type="hidden" name="Delete" value="Yes" />');
269 … echo(' <input type="hidden" name="' . PageRules::ID_NAME . '" value="' . $id . '" />');
270 echo(' </form>');
271 echo(' <form action="" method="post" style="display: inline-block">');
272 … echo('<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />');
273 echo('<button style="background: none;border: 0;">');
274 …echo(inlineSVG(DirectoryLayout::getComboImagesDirectory()->resolve('file-document-edit-outline.svg…
275 echo('</button>');
276 echo(' <input type="hidden" name="upsert" value="Yes" />');
277 … echo(' <input type="hidden" name="' . PageRules::ID_NAME . '" value="' . $id . '" />');
278 echo(' </form>');
280 echo(' </td>');
281 echo(' <td>' . $priority . '</td>');
282 echo(' <td>' . $matcher . '</td>');
283 echo(' <td>' . $target . '</td>');
284 echo(' <td>' . $timestamp . '</td>');
285 echo(' </tr>');
287 echo(' </tbody>');
288 echo('</table>');
289 echo('</div>'); //End Table responsive
292 echo('</div>'); // End level 2