Changeset 3145650
- Timestamp:
- 09/03/2024 02:53:53 AM (19 months ago)
- Location:
- accessibility-uuu-widget/trunk
- Files:
-
- 2 edited
-
accessibility-uuu-widget.php (modified) (7 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
accessibility-uuu-widget/trunk/accessibility-uuu-widget.php
r3136400 r3145650 5 5 * @package ACCESSIBIL 6 6 * @author Toitx 7 * @version 1.0. 17 * @version 1.0.2 8 8 * @license GPL-3.0-or-later 9 9 * … … 12 12 * Plugin URI: https://wordpress.org/plugins/accessibility-uuu-widget 13 13 * Description: This plugin integrates with a third-party service provided by UUU. By installing and using this plugin, a script from UUU will be embedded into your WordPress site. This script is used to enhance website accessibility and improve user experience. 14 * Version: 1.0. 114 * Version: 1.0.2 15 15 * Author: Toitx 16 16 * Author URI: https://uuu.user-a11y.com … … 27 27 28 28 // Plugin version 29 define( 'ACCESSIBIL_VERSION', '1.0. 1' );29 define( 'ACCESSIBIL_VERSION', '1.0.2' ); 30 30 31 31 // Plugin Root File … … 51 51 * 52 52 * @author Toitx 53 * @since 1.0. 153 * @since 1.0.2 54 54 * @return object|Accessibility_Uuu_Widget 55 55 */ … … 93 93 94 94 function uuuaccessibility_admin_styles() { 95 $version = '1.0. 1';95 $version = '1.0.2'; 96 96 wp_register_style( 97 97 'uuuaccessibility-admin-style', … … 121 121 function uuuaccessibility_display_script() { 122 122 $api_key = get_option('uuuaccessibility_text_display'); 123 $script_version = '1.0. 1';123 $script_version = '1.0.2'; 124 124 125 125 wp_register_script( … … 134 134 135 135 $inline_script = 'document.addEventListener("DOMContentLoaded", function() {'; 136 $inline_script .= 'var script = document.querySelector( "script#uuuaccessibility-a11y-script-js");';136 $inline_script .= 'var script = document.querySelector(\'script[src^="https://uuu.user-a11y.com/assets/js/a11y/script.min.js"]\');'; 137 137 $inline_script .= 'if (script) {'; 138 138 $inline_script .= ' script.setAttribute("uuu_a11y_apikey", "' . esc_attr($api_key) . '");'; -
accessibility-uuu-widget/trunk/readme.txt
r3136400 r3145650 4 4 Requires at least: 5.0 5 5 Tested up to: 6.6 6 Stable tag: 1.0. 16 Stable tag: 1.0.2 7 7 License: GPLv3 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-3.0.html … … 53 53 5. Translation 54 54 == Changelog == 55 = 1.0. 1=55 = 1.0.2 = 56 56 * Initial release 57 57 == Upgrade Notice == 58 = 1.0. 1=58 = 1.0.2 = 59 59 This is the first version of the UUU plugin. 60 60 == License ==
Note: See TracChangeset
for help on using the changeset viewer.