Changeset 3086573
- Timestamp:
- 05/14/2024 02:22:46 PM (23 months ago)
- Location:
- header-footer-elementor
- Files:
-
- 36 added
- 12 edited
- 1 copied
-
tags/1.6.30 (copied) (copied from header-footer-elementor/trunk)
-
tags/1.6.30/header-footer-elementor.php (modified) (3 diffs)
-
tags/1.6.30/inc/class-header-footer-elementor.php (modified) (1 diff)
-
tags/1.6.30/inc/class-hfe-settings-page.php (modified) (1 diff)
-
tags/1.6.30/inc/lib/svg-sanitizer (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/LICENSE (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/ElementReference (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/ElementReference/Resolver.php (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/ElementReference/Subject.php (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/ElementReference/Usage.php (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/Exceptions (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/Exceptions/NestingException.php (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/Helper.php (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/Sanitizer.php (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/data (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/data/AllowedAttributes.php (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/data/AllowedTags.php (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/data/AttributeInterface.php (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/data/TagInterface.php (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/data/XPath.php (added)
-
tags/1.6.30/inc/lib/svg-sanitizer/src/svg-scanner.php (added)
-
tags/1.6.30/inc/widgets-manager/class-widgets-loader.php (modified) (1 diff)
-
tags/1.6.30/languages/header-footer-elementor.pot (modified) (8 diffs)
-
tags/1.6.30/readme.txt (modified) (2 diffs)
-
trunk/header-footer-elementor.php (modified) (3 diffs)
-
trunk/inc/class-header-footer-elementor.php (modified) (1 diff)
-
trunk/inc/class-hfe-settings-page.php (modified) (1 diff)
-
trunk/inc/lib/svg-sanitizer (added)
-
trunk/inc/lib/svg-sanitizer/LICENSE (added)
-
trunk/inc/lib/svg-sanitizer/src (added)
-
trunk/inc/lib/svg-sanitizer/src/ElementReference (added)
-
trunk/inc/lib/svg-sanitizer/src/ElementReference/Resolver.php (added)
-
trunk/inc/lib/svg-sanitizer/src/ElementReference/Subject.php (added)
-
trunk/inc/lib/svg-sanitizer/src/ElementReference/Usage.php (added)
-
trunk/inc/lib/svg-sanitizer/src/Exceptions (added)
-
trunk/inc/lib/svg-sanitizer/src/Exceptions/NestingException.php (added)
-
trunk/inc/lib/svg-sanitizer/src/Helper.php (added)
-
trunk/inc/lib/svg-sanitizer/src/Sanitizer.php (added)
-
trunk/inc/lib/svg-sanitizer/src/data (added)
-
trunk/inc/lib/svg-sanitizer/src/data/AllowedAttributes.php (added)
-
trunk/inc/lib/svg-sanitizer/src/data/AllowedTags.php (added)
-
trunk/inc/lib/svg-sanitizer/src/data/AttributeInterface.php (added)
-
trunk/inc/lib/svg-sanitizer/src/data/TagInterface.php (added)
-
trunk/inc/lib/svg-sanitizer/src/data/XPath.php (added)
-
trunk/inc/lib/svg-sanitizer/src/svg-scanner.php (added)
-
trunk/inc/widgets-manager/class-widgets-loader.php (modified) (1 diff)
-
trunk/languages/header-footer-elementor.pot (modified) (8 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
header-footer-elementor/tags/1.6.30/header-footer-elementor.php
r3086402 r3086573 8 8 * Text Domain: header-footer-elementor 9 9 * Domain Path: /languages 10 * Version: 1.6. 2910 * Version: 1.6.30 11 11 * Elementor tested up to: 3.21 12 12 * Elementor Pro tested up to: 3.21 … … 15 15 */ 16 16 17 define( 'HFE_VER', '1.6. 29' );17 define( 'HFE_VER', '1.6.30' ); 18 18 define( 'HFE_FILE', __FILE__ ); 19 19 define( 'HFE_DIR', plugin_dir_path( __FILE__ ) ); … … 26 26 */ 27 27 require_once HFE_DIR . '/inc/class-header-footer-elementor.php'; 28 29 /**30 * Include Composer autoloader.31 */32 require_once HFE_DIR . 'vendor/autoload.php';33 28 34 29 /** -
header-footer-elementor/tags/1.6.30/inc/class-header-footer-elementor.php
r3004048 r3086573 110 110 if ( ! class_exists( 'BSF_Analytics_Loader' ) ) { 111 111 require_once HFE_DIR . 'admin/bsf-analytics/class-bsf-analytics-loader.php'; 112 } 113 114 if ( ! class_exists( 'Sanitizer' ) ) { 115 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/Sanitizer.php'; 116 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/data/AttributeInterface.php'; 117 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/data/TagInterface.php'; 118 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/data/AllowedAttributes.php'; 119 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/data/AllowedTags.php'; 120 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/data/XPath.php'; 121 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/ElementReference/Resolver.php'; 122 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/ElementReference/Subject.php'; 123 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/ElementReference/Usage.php'; 124 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/Exceptions/NestingException.php'; 125 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/Helper.php'; 126 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/Sanitizer.php'; 112 127 } 113 128 -
header-footer-elementor/tags/1.6.30/inc/class-hfe-settings-page.php
r3086402 r3086573 516 516 */ 517 517 protected function get_white_label() { 518 $white_labels = is_callable( 'Astra_Admin_Helper::get_admin_settings_option' ) ? \Astra_Admin_Helper::get_admin_settings_option( '_astra_ext_white_label', true ) : array();518 $white_labels = is_callable( 'Astra_Admin_Helper::get_admin_settings_option' ) ? \Astra_Admin_Helper::get_admin_settings_option( '_astra_ext_white_label', true ) : []; 519 519 520 520 $theme_name = ! empty( $white_labels['astra']['name'] ) ? $white_labels['astra']['name'] : 'Astra'; 521 521 522 return array(522 return [ 523 523 'theme_name' => $theme_name, 524 524 'description' => ! empty( $white_labels['astra']['description'] ) ? $white_labels['astra']['description'] : esc_html( sprintf( __( 'Powering over 1+ Million websites, %s is loved for the fast performance and ease of use it offers. It is suitable for all kinds of websites like blogs, portfolios, business, and WooCommerce stores.', 'header-footer-elementor' ), esc_html( $theme_name ) ) ), 525 525 'theme_icon' => ! empty( $white_labels['astra']['icon'] ) ? $white_labels['astra']['icon'] : '', 526 526 'author_url' => ! empty( $white_labels['astra']['author_url'] ) ? $white_labels['astra']['author_url'] : 'https://wpastra.com/', 527 );527 ]; 528 528 } 529 529 -
header-footer-elementor/tags/1.6.30/inc/widgets-manager/class-widgets-loader.php
r3086402 r3086573 14 14 use Elementor\Plugin; 15 15 use Elementor\Utils; 16 use enshrined\svgSanitize\Sanitizer; 16 17 17 18 defined( 'ABSPATH' ) or exit; -
header-footer-elementor/tags/1.6.30/languages/header-footer-elementor.pot
r3086402 r3086573 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Elementor Header & Footer Builder 1.6. 29\n"5 "Project-Id-Version: Elementor Header & Footer Builder 1.6.30\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/header-footer-elementor\n" 8 "POT-Creation-Date: 2024-05-14 05:36:53+00:00\n"8 "POT-Creation-Date: 2024-05-14 12:13:18+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" … … 241 241 msgstr "" 242 242 243 #: inc/class-header-footer-elementor.php:1 79243 #: inc/class-header-footer-elementor.php:194 244 244 msgid "" 245 245 "Hello! Seems like you have used Elementor Header & Footer Builder to build " … … 247 247 msgstr "" 248 248 249 #: inc/class-header-footer-elementor.php:1 80249 #: inc/class-header-footer-elementor.php:195 250 250 msgid "" 251 251 "Could you please do us a BIG favor and give it a 5-star rating on " … … 254 254 msgstr "" 255 255 256 #: inc/class-header-footer-elementor.php:1 82256 #: inc/class-header-footer-elementor.php:197 257 257 msgid "Ok, you deserve it" 258 258 msgstr "" 259 259 260 #: inc/class-header-footer-elementor.php:1 84260 #: inc/class-header-footer-elementor.php:199 261 261 msgid "Nope, maybe later" 262 262 msgstr "" 263 263 264 #: inc/class-header-footer-elementor.php: 185264 #: inc/class-header-footer-elementor.php:200 265 265 msgid "I already did" 266 266 msgstr "" 267 267 268 #: inc/class-header-footer-elementor.php:2 48268 #: inc/class-header-footer-elementor.php:263 269 269 #. translators: %s: html tags 270 270 msgid "" … … 273 273 msgstr "" 274 274 275 #: inc/class-header-footer-elementor.php:2 55275 #: inc/class-header-footer-elementor.php:270 276 276 msgid "Activate Elementor" 277 277 msgstr "" 278 278 279 #: inc/class-header-footer-elementor.php:2 60280 #: inc/class-header-footer-elementor.php: 294279 #: inc/class-header-footer-elementor.php:275 280 #: inc/class-header-footer-elementor.php:309 281 281 msgid "Install Elementor" 282 282 msgstr "" 283 283 284 #: inc/class-header-footer-elementor.php:2 82284 #: inc/class-header-footer-elementor.php:297 285 285 #. translators: %s: html tags 286 286 msgid "" … … 289 289 msgstr "" 290 290 291 #: inc/class-header-footer-elementor.php: 289291 #: inc/class-header-footer-elementor.php:304 292 292 msgid "Update Elementor" 293 293 msgstr "" 294 294 295 #: inc/class-header-footer-elementor.php:3 20295 #: inc/class-header-footer-elementor.php:335 296 296 #. translators: %s: html tags 297 297 msgid "" … … 300 300 msgstr "" 301 301 302 #: inc/class-header-footer-elementor.php:4 79302 #: inc/class-header-footer-elementor.php:494 303 303 #. translators: %s: html tags 304 304 msgid "Theme Support" … … 733 733 msgstr "" 734 734 735 #: inc/widgets-manager/class-widgets-loader.php:27 2735 #: inc/widgets-manager/class-widgets-loader.php:273 736 736 #: inc/widgets-manager/widgets/class-cart.php:51 737 737 #: inc/widgets-manager/widgets/class-cart.php:651 -
header-footer-elementor/tags/1.6.30/readme.txt
r3086402 r3086573 6 6 Requires PHP: 5.4 7 7 Tested up to: 6.5 8 Stable tag: 1.6. 298 Stable tag: 1.6.30 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 141 141 == Changelog == 142 142 143 = 1.6.30 = 144 - Fix: Improved error messages during plugin activation. 145 143 146 = 1.6.29 = 144 147 - Fix: Navigation Menu – The submenu container opens without hovering over the parent menu item. -
header-footer-elementor/trunk/header-footer-elementor.php
r3086402 r3086573 8 8 * Text Domain: header-footer-elementor 9 9 * Domain Path: /languages 10 * Version: 1.6. 2910 * Version: 1.6.30 11 11 * Elementor tested up to: 3.21 12 12 * Elementor Pro tested up to: 3.21 … … 15 15 */ 16 16 17 define( 'HFE_VER', '1.6. 29' );17 define( 'HFE_VER', '1.6.30' ); 18 18 define( 'HFE_FILE', __FILE__ ); 19 19 define( 'HFE_DIR', plugin_dir_path( __FILE__ ) ); … … 26 26 */ 27 27 require_once HFE_DIR . '/inc/class-header-footer-elementor.php'; 28 29 /**30 * Include Composer autoloader.31 */32 require_once HFE_DIR . 'vendor/autoload.php';33 28 34 29 /** -
header-footer-elementor/trunk/inc/class-header-footer-elementor.php
r3004048 r3086573 110 110 if ( ! class_exists( 'BSF_Analytics_Loader' ) ) { 111 111 require_once HFE_DIR . 'admin/bsf-analytics/class-bsf-analytics-loader.php'; 112 } 113 114 if ( ! class_exists( 'Sanitizer' ) ) { 115 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/Sanitizer.php'; 116 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/data/AttributeInterface.php'; 117 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/data/TagInterface.php'; 118 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/data/AllowedAttributes.php'; 119 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/data/AllowedTags.php'; 120 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/data/XPath.php'; 121 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/ElementReference/Resolver.php'; 122 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/ElementReference/Subject.php'; 123 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/ElementReference/Usage.php'; 124 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/Exceptions/NestingException.php'; 125 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/Helper.php'; 126 require_once HFE_DIR . 'inc/lib/svg-sanitizer/src/Sanitizer.php'; 112 127 } 113 128 -
header-footer-elementor/trunk/inc/class-hfe-settings-page.php
r3086402 r3086573 516 516 */ 517 517 protected function get_white_label() { 518 $white_labels = is_callable( 'Astra_Admin_Helper::get_admin_settings_option' ) ? \Astra_Admin_Helper::get_admin_settings_option( '_astra_ext_white_label', true ) : array();518 $white_labels = is_callable( 'Astra_Admin_Helper::get_admin_settings_option' ) ? \Astra_Admin_Helper::get_admin_settings_option( '_astra_ext_white_label', true ) : []; 519 519 520 520 $theme_name = ! empty( $white_labels['astra']['name'] ) ? $white_labels['astra']['name'] : 'Astra'; 521 521 522 return array(522 return [ 523 523 'theme_name' => $theme_name, 524 524 'description' => ! empty( $white_labels['astra']['description'] ) ? $white_labels['astra']['description'] : esc_html( sprintf( __( 'Powering over 1+ Million websites, %s is loved for the fast performance and ease of use it offers. It is suitable for all kinds of websites like blogs, portfolios, business, and WooCommerce stores.', 'header-footer-elementor' ), esc_html( $theme_name ) ) ), 525 525 'theme_icon' => ! empty( $white_labels['astra']['icon'] ) ? $white_labels['astra']['icon'] : '', 526 526 'author_url' => ! empty( $white_labels['astra']['author_url'] ) ? $white_labels['astra']['author_url'] : 'https://wpastra.com/', 527 );527 ]; 528 528 } 529 529 -
header-footer-elementor/trunk/inc/widgets-manager/class-widgets-loader.php
r3086402 r3086573 14 14 use Elementor\Plugin; 15 15 use Elementor\Utils; 16 use enshrined\svgSanitize\Sanitizer; 16 17 17 18 defined( 'ABSPATH' ) or exit; -
header-footer-elementor/trunk/languages/header-footer-elementor.pot
r3086402 r3086573 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Elementor Header & Footer Builder 1.6. 29\n"5 "Project-Id-Version: Elementor Header & Footer Builder 1.6.30\n" 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/header-footer-elementor\n" 8 "POT-Creation-Date: 2024-05-14 05:36:53+00:00\n"8 "POT-Creation-Date: 2024-05-14 12:13:18+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" … … 241 241 msgstr "" 242 242 243 #: inc/class-header-footer-elementor.php:1 79243 #: inc/class-header-footer-elementor.php:194 244 244 msgid "" 245 245 "Hello! Seems like you have used Elementor Header & Footer Builder to build " … … 247 247 msgstr "" 248 248 249 #: inc/class-header-footer-elementor.php:1 80249 #: inc/class-header-footer-elementor.php:195 250 250 msgid "" 251 251 "Could you please do us a BIG favor and give it a 5-star rating on " … … 254 254 msgstr "" 255 255 256 #: inc/class-header-footer-elementor.php:1 82256 #: inc/class-header-footer-elementor.php:197 257 257 msgid "Ok, you deserve it" 258 258 msgstr "" 259 259 260 #: inc/class-header-footer-elementor.php:1 84260 #: inc/class-header-footer-elementor.php:199 261 261 msgid "Nope, maybe later" 262 262 msgstr "" 263 263 264 #: inc/class-header-footer-elementor.php: 185264 #: inc/class-header-footer-elementor.php:200 265 265 msgid "I already did" 266 266 msgstr "" 267 267 268 #: inc/class-header-footer-elementor.php:2 48268 #: inc/class-header-footer-elementor.php:263 269 269 #. translators: %s: html tags 270 270 msgid "" … … 273 273 msgstr "" 274 274 275 #: inc/class-header-footer-elementor.php:2 55275 #: inc/class-header-footer-elementor.php:270 276 276 msgid "Activate Elementor" 277 277 msgstr "" 278 278 279 #: inc/class-header-footer-elementor.php:2 60280 #: inc/class-header-footer-elementor.php: 294279 #: inc/class-header-footer-elementor.php:275 280 #: inc/class-header-footer-elementor.php:309 281 281 msgid "Install Elementor" 282 282 msgstr "" 283 283 284 #: inc/class-header-footer-elementor.php:2 82284 #: inc/class-header-footer-elementor.php:297 285 285 #. translators: %s: html tags 286 286 msgid "" … … 289 289 msgstr "" 290 290 291 #: inc/class-header-footer-elementor.php: 289291 #: inc/class-header-footer-elementor.php:304 292 292 msgid "Update Elementor" 293 293 msgstr "" 294 294 295 #: inc/class-header-footer-elementor.php:3 20295 #: inc/class-header-footer-elementor.php:335 296 296 #. translators: %s: html tags 297 297 msgid "" … … 300 300 msgstr "" 301 301 302 #: inc/class-header-footer-elementor.php:4 79302 #: inc/class-header-footer-elementor.php:494 303 303 #. translators: %s: html tags 304 304 msgid "Theme Support" … … 733 733 msgstr "" 734 734 735 #: inc/widgets-manager/class-widgets-loader.php:27 2735 #: inc/widgets-manager/class-widgets-loader.php:273 736 736 #: inc/widgets-manager/widgets/class-cart.php:51 737 737 #: inc/widgets-manager/widgets/class-cart.php:651 -
header-footer-elementor/trunk/readme.txt
r3086402 r3086573 6 6 Requires PHP: 5.4 7 7 Tested up to: 6.5 8 Stable tag: 1.6. 298 Stable tag: 1.6.30 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 141 141 == Changelog == 142 142 143 = 1.6.30 = 144 - Fix: Improved error messages during plugin activation. 145 143 146 = 1.6.29 = 144 147 - Fix: Navigation Menu – The submenu container opens without hovering over the parent menu item.
Note: See TracChangeset
for help on using the changeset viewer.