PluginProbe
URL Params / 2.5
URL Params v2.5
trunk 1.6 1.7 1.8 2.0 2.1 2.2 2.3 2.4 2.5 2.5-review
url-params / options.php

options.php in URL Params 2.5, at options.php

38 lines 2.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <div class="wrap" xmlns="http://www.w3.org/1999/html">
2 <h2><?php _e('URL Params Options', 'urlparams'); ?></h2>
3
4 <form method="post" action="options.php">
5 <?php wp_nonce_field('update-options'); ?>
6 <?php settings_fields('urlparams'); ?>
7
8 <p><?php _e('Congratulations on installing the URL Params plugin! <a href="https://wordpress.org/plugins/url-params/" target="_blank">Read the Docs</a>.', 'urlparams'); ?></p>
9
10 <h2><?php _e('Advanced Settings', 'urlparams'); ?></h2>
11
12 <p><?php _e('By default, if you use URL Params to create HTML tags, your tags and attributes will be <a href="https://developer.wordpress.org/reference/functions/wp_kses_allowed_html/" target="_blank">sanitized</a>.', 'urlparams'); ?></p>
13
14 <p><?php _e('This is to prevent less privileged users from creating pages that execute javascript code for more privileged users like you.', 'urlparams'); ?></p>
15
16 <label for="defaulttags"><?php _e('Supported Tags and Attributes:', 'urlparams'); ?></label><br/>
17
18 <textarea id="defaulttags" rows="10" cols="80" style="max-width: 100%; overflow-wrap: normal; overflow-x: scroll;" readonly><?php
19 $tags = wp_kses_allowed_html('post');
20 foreach($tags as $tagName => $attributes) {
21 print $tagName.': '.implode(', ', array_keys($attributes))."\n";
22 }
23 ?></textarea>
24
25 <p><?php _e('If for some reason you need more advanced tags or attributes, you can add them below.', 'urlparams'); ?></p>
26
27 <p><?php _e('Enter one HTML tag type per line, followed by a colon, followed by a comma delimited list of attributes.', 'urlparams'); ?></p>
28
29 <label for="urlparams_customtags"><?php _e('Custom Tags and Attributes:', 'urlparams'); ?></label><br/>
30
31 <textarea id="urlparams_customtags" name="urlparams_customtags" rows="10" cols="80" style="max-width: 100%;" placeholder="<?php _e('exampletag: exampleattribute1, exampleattribute2, exampleattribute3', 'urlparams'); ?>"><?php echo(get_option('urlparams_customtags')) ?></textarea>
32
33 <p class="submit">
34 <input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
35 </p>
36
37 </form>
38 </div>