Changeset 2374346
- Timestamp:
- 09/03/2020 08:29:40 AM (6 years ago)
- Location:
- rnn-browser-support
- Files:
-
- 4 added
- 2 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/index.php (added)
-
tags/1.0.2/readme.txt (added)
-
tags/1.0.2/rnn-browser-support.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/rnn-browser-support.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rnn-browser-support/trunk/readme.txt
r2374337 r2374346 1 === R esenNet |Browser Support ===1 === RNN Browser Support === 2 2 Contributors: ResenNet 3 3 Tags: Browser, Support, Browser Support, Supported Browser, RNN … … 31 31 32 32 == Changelog == 33 = 1.0.2 = 34 * Changed plugin name back to "RNN Browser Support" 35 * Added support for translating option names 33 36 = 1.0.1 = 34 37 * Changed plugin name from "RNN Browser Support" to "ResenNet | Browser Support" -
rnn-browser-support/trunk/rnn-browser-support.php
r2374325 r2374346 1 1 <?php 2 2 /* 3 Plugin Name: R esenNet |Browser Support3 Plugin Name: RNN Browser Support 4 4 Description: Easy way to inform people that their browser might not support every element on the site. 5 Version: 1.0. 15 Version: 1.0.2 6 6 Author: ResenNet 7 Text Domain: rnn-browser-support 8 Domain Path: /languages 7 9 License: GPLv3 8 10 */ … … 16 18 17 19 function rnn_browser_support_menu() { 18 add_menu_page('RNN Browser Support', 'Browser Support', 'administrator', __FILE__, 'rnn_browser_support_settings_page' );20 add_menu_page('RNN Browser Support', 'Browser Support', 'administrator', __FILE__, 'rnn_browser_support_settings_page', 'dashicons-bell'); 19 21 20 22 add_action('admin_init', 'register_rnn_browser_support_settings'); … … 29 31 ?> 30 32 <div class="wrap"> 31 <h1>R esenNet |Browser Support</h1>33 <h1>RNN Browser Support</h1> 32 34 33 35 <form method="post" action="options.php"> … … 36 38 <table class="form-table"> 37 39 <tr valign="top"> 38 <th scope="row"> Enable?</th>40 <th scope="row"><?php _e('Enable','rnn-browser-support') ?></th> 39 41 <td><input type="checkbox" name="activate_plugin" value="1" <?php checked(1, get_option('activate_plugin'), true); ?> /></td> 40 42 </tr> 41 43 42 44 <tr valign="top"> 43 <th scope="row"> Alert Message</th>45 <th scope="row"><?php _e('Alert Message','rnn-browser-support') ?></th> 44 46 <td><textarea style="width: 400px; height: 100px;" name="alert_message" /><?php echo esc_attr( get_option('alert_message') ); ?></textarea></td> 45 47 </tr>
Note: See TracChangeset
for help on using the changeset viewer.