Changeset 2326885
- Timestamp:
- 06/18/2020 04:39:37 PM (6 years ago)
- Location:
- accessibe/trunk
- Files:
-
- 2 edited
-
accessiebe.php (modified) (1 diff)
-
class.accessibe.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
accessibe/trunk/accessiebe.php
r2326867 r2326885 4 4 */ 5 5 /* 6 Plugin Name: Web Accessibility ByaccessiBe6 Plugin Name: accessiBe 7 7 Plugin URI: https://accessibe.com/ 8 Description: Thanks for choosing accessiBe! Please grab the installation code from your account at our website and paste it in the field below. if you need support or ensure where to get the code from, please visit https://accessibe.com/support or don't hesitate to contact us!8 Description: accessiBe is the #1 fully automated web accessibility solution for WCAG 2.1 and ADA compliance. Protect your website from lawsuits and increase your potential audience. 9 9 Version: 1.0 10 10 Author: rgbcode -
accessibe/trunk/class.accessibe.php
r2326867 r2326885 37 37 */ 38 38 public static function add_action_links( $links ) { 39 $ mylinks= array(39 $setting_link = array( 40 40 '<a href="' . admin_url( 'options-general.php?page=accessiBe' ) . '">' . __( 'Settings', 'accessibe' ) . '</a>', 41 41 ); 42 42 43 return array_merge( $links, $ mylinks);43 return array_merge( $links, $setting_link ); 44 44 } 45 45 … … 65 65 add_settings_section( 66 66 'accessibe_group', 67 __( ' Settings:', 'accessibe' ),67 __( 'Thanks for choosing accessiBe!', 'accessibe' ), 68 68 array( 69 69 'Accessibe', … … 91 91 public static function render_js_textarea_options() { 92 92 ?> 93 <textarea name="accessibe_js" id="accessibe_js" cols="30" rows="10" style="width:100%; max-width:800px;"> 94 <?php echo esc_html( get_option( 'accessibe_js' ) ); ?> 95 </textarea> 93 <textarea name="accessibe_js" id="accessibe_js" cols="30" rows="10" style="width:100%; max-width:800px;"><?php echo esc_html( get_option( 'accessibe_js' ) ); ?></textarea> 96 94 <?php 97 95 } … … 101 99 */ 102 100 public static function settings_section_description() { 103 return '';101 echo __( 'Please grab the installation code from your account at our website and paste it in the field below.<br>if you need support or ensure where to get the code from, please visit <a href="https://accessibe.com/support" target="_blank">https://accessibe.com/support</a> or don\'t hesitate to contact us!', 'accessibe' ); 104 102 } 105 103
Note: See TracChangeset
for help on using the changeset viewer.