Changeset 3397372
- Timestamp:
- 11/17/2025 03:56:07 PM (4 months ago)
- Location:
- jotform-feedback-button
- Files:
-
- 13 added
- 2 edited
-
tags/1.0.9 (added)
-
tags/1.0.9/images (added)
-
tags/1.0.9/images/browse-icon22x22.png (added)
-
tags/1.0.9/images/feedback32x32.png (added)
-
tags/1.0.9/jotform-wp-feedback-options.php (added)
-
tags/1.0.9/jotform-wp-feedback.php (added)
-
tags/1.0.9/readme.txt (added)
-
tags/1.0.9/src (added)
-
tags/1.0.9/src/css (added)
-
tags/1.0.9/src/css/app.css (added)
-
tags/1.0.9/src/js (added)
-
tags/1.0.9/src/js/jotform-wp-feedback.js (added)
-
tags/1.0.9/uninstall.php (added)
-
trunk/jotform-wp-feedback.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
jotform-feedback-button/trunk/jotform-wp-feedback.php
r3397251 r3397372 8 8 * License: GPLv2 or later 9 9 * License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 * Version: 1.0. 810 * Version: 1.0.9 11 11 * Author URI: https://www.jotform.com/ 12 12 */ … … 17 17 } 18 18 19 define('JWPF_PLUGIN_VERSION', '1.0. 8');19 define('JWPF_PLUGIN_VERSION', '1.0.9'); 20 20 define('JWPF_PLUGIN_DIR', plugin_dir_path(__FILE__)); 21 21 define('JWPF_PLUGIN_URL', plugin_dir_url(__FILE__)); … … 55 55 } 56 56 57 function jotform_feedback_button_sanitize_options($input) {57 public function jotform_feedback_button_sanitize_options($input) { 58 58 if (is_array($input)) { 59 59 foreach ($input as $key => $value) { … … 114 114 if (!empty($options["formID"])) { 115 115 $data = [ 116 'formId' => esc_html __($options["formID"]),117 'buttonText' => esc_html __($options["formTitle"]),118 'base' => esc_ html__('https://www.jotform.com/'),119 'background' => esc_html __($options["buttonColor"]),120 'fontColor ' => esc_html __($options["labelColor"]),121 'buttonSide' => esc_html __($options["screenAlignment"]),122 'buttonAlign' => esc_html __($options["horizontalAlignment"]),123 'type' => esc_html __($options["lightBoxType"]),124 'width' => esc_html __($options["formWidth"]),125 'height' => esc_html __($options["formHeight"])116 'formId' => esc_html($options["formID"]), 117 'buttonText' => esc_html($options["formTitle"]), 118 'base' => esc_url('https://www.jotform.com/'), 119 'background' => esc_html($options["buttonColor"]), 120 'fontColor ' => esc_html($options["labelColor"]), 121 'buttonSide' => esc_html($options["screenAlignment"]), 122 'buttonAlign' => esc_html($options["horizontalAlignment"]), 123 'type' => esc_html($options["lightBoxType"]), 124 'width' => esc_html($options["formWidth"]), 125 'height' => esc_html($options["formHeight"]) 126 126 ]; 127 127 -
jotform-feedback-button/trunk/readme.txt
r3397251 r3397372 4 4 Requires at least: 5.3 5 5 Tested up to: 6.8 6 Stable tag: 1.0. 86 Stable tag: 1.0.9 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 89 89 90 90 == Changelog == 91 = 1.0.9 = 92 * Fix: codebase refactor 93 91 94 = 1.0.8 = 92 95 * Fix: codebase refactor
Note: See TracChangeset
for help on using the changeset viewer.