controls
6 months ago
helpers
6 months ago
pa-display-conditions
6 months ago
templates
6 months ago
acf-helper.php
6 months ago
addons-cross-cp.php
6 months ago
addons-integration.php
6 months ago
assets-manager.php
6 months ago
class-pa-core.php
6 months ago
cm-pointer.php
6 months ago
helper-functions.php
6 months ago
live-editor-modal.php
6 months ago
module-base.php
6 months ago
pa-nav-menu-walker.php
6 months ago
papro-promotion.php
6 months ago
premium-template-tags.php
6 months ago
helper-functions.php
1988 lines
| 1 | <?php |
| 2 | /** |
| 3 | * PA Helper Functions. |
| 4 | */ |
| 5 | |
| 6 | namespace PremiumAddons\Includes; |
| 7 | |
| 8 | // Premium Addons Pro Classes. |
| 9 | use PremiumAddonsPro\Includes\White_Label\Helper; |
| 10 | use PremiumAddons\Admin\Includes\Admin_Helper; |
| 11 | |
| 12 | // Elementor Classes. |
| 13 | use Elementor\Icons_Manager; |
| 14 | use Elementor\Core\Settings\Manager as SettingsManager; |
| 15 | use Elementor\Plugin; |
| 16 | use Elementor\Controls_Manager; |
| 17 | |
| 18 | if ( ! defined( 'ABSPATH' ) ) { |
| 19 | exit; |
| 20 | } |
| 21 | |
| 22 | /** |
| 23 | * Class Helper_Functions. |
| 24 | */ |
| 25 | class Helper_Functions { |
| 26 | |
| 27 | /** |
| 28 | * A list of safe tags for `validate_html_tag` method. |
| 29 | */ |
| 30 | const ALLOWED_HTML_WRAPPER_TAGS = array( |
| 31 | 'article', |
| 32 | 'aside', |
| 33 | 'div', |
| 34 | 'footer', |
| 35 | 'h1', |
| 36 | 'h2', |
| 37 | 'h3', |
| 38 | 'h4', |
| 39 | 'h5', |
| 40 | 'h6', |
| 41 | 'header', |
| 42 | 'main', |
| 43 | 'nav', |
| 44 | 'p', |
| 45 | 'section', |
| 46 | 'span', |
| 47 | ); |
| 48 | |
| 49 | /** |
| 50 | * Theme |
| 51 | * |
| 52 | * @var theme |
| 53 | */ |
| 54 | private static $current_theme = null; |
| 55 | |
| 56 | /** |
| 57 | * Google maps prefixes |
| 58 | * |
| 59 | * @var google_localize |
| 60 | */ |
| 61 | private static $google_localize = null; |
| 62 | |
| 63 | /** |
| 64 | * SVG Shapes |
| 65 | * |
| 66 | * @var shapes |
| 67 | */ |
| 68 | private static $shapes = null; |
| 69 | |
| 70 | /** |
| 71 | * WP lang prefixes |
| 72 | * |
| 73 | * @var lang_locales |
| 74 | */ |
| 75 | private static $lang_locales = null; |
| 76 | |
| 77 | /** |
| 78 | * Script debug enabled |
| 79 | * |
| 80 | * @var script_debug |
| 81 | */ |
| 82 | private static $script_debug = null; |
| 83 | |
| 84 | /** |
| 85 | * JS scripts directory |
| 86 | * |
| 87 | * @var js_dir |
| 88 | */ |
| 89 | private static $js_dir = null; |
| 90 | |
| 91 | /** |
| 92 | * CSS files directory |
| 93 | * |
| 94 | * @var js_dir |
| 95 | */ |
| 96 | private static $css_dir = null; |
| 97 | |
| 98 | /** |
| 99 | * JS Suffix |
| 100 | * |
| 101 | * @var js_suffix |
| 102 | */ |
| 103 | private static $assets_suffix = null; |
| 104 | |
| 105 | /** |
| 106 | * Get Icon SVG Data |
| 107 | * |
| 108 | * @since 4.10.72 |
| 109 | * @access private |
| 110 | * |
| 111 | * @return array icon data. |
| 112 | */ |
| 113 | private static function get_icon_svg_data( $icon ) { |
| 114 | |
| 115 | preg_match( '/fa(.*) fa-/', $icon['value'], $icon_name_matches ); |
| 116 | |
| 117 | if ( empty( $icon_name_matches ) ) { |
| 118 | return; |
| 119 | } |
| 120 | |
| 121 | $icon_name = str_replace( $icon_name_matches[0], '', $icon['value'] ); |
| 122 | |
| 123 | $icon_key = str_replace( ' fa-', '-', $icon['value'] ); |
| 124 | |
| 125 | $icon_file_name = str_replace( 'fa-', '', $icon['library'] ); |
| 126 | |
| 127 | $path = ELEMENTOR_ASSETS_PATH . 'lib/font-awesome/json/' . $icon_file_name . '.json'; |
| 128 | |
| 129 | $data = file_get_contents( $path ); |
| 130 | |
| 131 | if ( ! $data ) { |
| 132 | return; |
| 133 | } |
| 134 | |
| 135 | $data = json_decode( $data, true ); |
| 136 | |
| 137 | $svg_data = $data['icons'][ $icon_name ]; |
| 138 | |
| 139 | return array( |
| 140 | 'width' => $svg_data[0], |
| 141 | 'height' => $svg_data[1], |
| 142 | 'path' => $svg_data[4], |
| 143 | ); |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * Check if white labeling - Free version author field is set |
| 148 | * |
| 149 | * @since 1.0.0 |
| 150 | * @access public |
| 151 | * |
| 152 | * @return string |
| 153 | */ |
| 154 | public static function author() { |
| 155 | |
| 156 | $author_free = 'Leap13'; |
| 157 | |
| 158 | if ( self::check_papro_version() ) { |
| 159 | |
| 160 | $white_label = Helper::get_white_labeling_settings(); |
| 161 | |
| 162 | $author_free = $white_label['premium-wht-lbl-name']; |
| 163 | |
| 164 | } |
| 165 | |
| 166 | return '' !== $author_free ? $author_free : 'Leap13'; |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Check if white labeling - Free version name field is set |
| 171 | * |
| 172 | * @since 1.0.0 |
| 173 | * @access public |
| 174 | * |
| 175 | * @return string |
| 176 | */ |
| 177 | public static function name() { |
| 178 | |
| 179 | $name_free = 'Premium Addons'; |
| 180 | |
| 181 | if ( self::check_papro_version() ) { |
| 182 | |
| 183 | $white_label = Helper::get_white_labeling_settings(); |
| 184 | |
| 185 | $name_free = $white_label['premium-wht-lbl-plugin-name']; |
| 186 | |
| 187 | } |
| 188 | |
| 189 | return '' !== $name_free ? $name_free : 'Premium Addons'; |
| 190 | } |
| 191 | |
| 192 | /** |
| 193 | * Check if white labeling - Hide row meta option is checked |
| 194 | * |
| 195 | * @since 1.0.0 |
| 196 | * @return boolean |
| 197 | */ |
| 198 | public static function is_hide_row_meta() { |
| 199 | |
| 200 | $hide_meta = false; |
| 201 | |
| 202 | if ( self::check_papro_version() ) { |
| 203 | |
| 204 | $white_label = Helper::get_white_labeling_settings(); |
| 205 | |
| 206 | $hide_meta = $white_label['premium-wht-lbl-row']; |
| 207 | |
| 208 | } |
| 209 | |
| 210 | return $hide_meta; |
| 211 | } |
| 212 | |
| 213 | /** |
| 214 | * Check if white labeling - Hide plugin logo option is checked |
| 215 | * |
| 216 | * @since 1.0.0 |
| 217 | * @access public |
| 218 | * |
| 219 | * @return boolean |
| 220 | */ |
| 221 | public static function is_hide_logo() { |
| 222 | |
| 223 | if ( self::check_papro_version() ) { |
| 224 | |
| 225 | if ( isset( get_option( 'pa_wht_lbl_save_settings' )['premium-wht-lbl-logo'] ) ) { |
| 226 | |
| 227 | $hide_logo = get_option( 'pa_wht_lbl_save_settings' )['premium-wht-lbl-logo']; |
| 228 | |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | return isset( $hide_logo ) ? $hide_logo : false; |
| 233 | } |
| 234 | |
| 235 | /** |
| 236 | * Get White Labeling - Widgets Category string |
| 237 | * |
| 238 | * @since 1.0.0 |
| 239 | * @access public |
| 240 | * |
| 241 | * @return string |
| 242 | */ |
| 243 | public static function get_category() { |
| 244 | |
| 245 | $category = __( 'Premium Addons', 'premium-addons-for-elementor' ); |
| 246 | |
| 247 | if ( self::check_papro_version() ) { |
| 248 | |
| 249 | $white_label = Helper::get_white_labeling_settings(); |
| 250 | |
| 251 | $category = $white_label['premium-wht-lbl-short-name']; |
| 252 | |
| 253 | } |
| 254 | |
| 255 | return '' !== $category ? $category : __( 'Premium Addons', 'premium-addons-for-elementor' ); |
| 256 | } |
| 257 | |
| 258 | /** |
| 259 | * Get White Labeling - Widgets Prefix string |
| 260 | * |
| 261 | * @since 1.0.0 |
| 262 | * @access public |
| 263 | * |
| 264 | * @return string |
| 265 | */ |
| 266 | public static function get_prefix() { |
| 267 | |
| 268 | $prefix = __( 'Premium', 'premium-addons-for-elementor' ); |
| 269 | |
| 270 | if ( self::check_papro_version() ) { |
| 271 | |
| 272 | $white_label = Helper::get_white_labeling_settings(); |
| 273 | |
| 274 | $prefix = $white_label['premium-wht-lbl-prefix']; |
| 275 | |
| 276 | } |
| 277 | |
| 278 | return '' !== $prefix ? $prefix : __( 'Premium', 'premium-addons-for-elementor' ); |
| 279 | } |
| 280 | |
| 281 | /** |
| 282 | * Check if white labeling - Future notification checked |
| 283 | * |
| 284 | * @since 1.0.0 |
| 285 | * @return boolean |
| 286 | */ |
| 287 | public static function check_hide_notifications() { |
| 288 | |
| 289 | if ( self::check_papro_version() ) { |
| 290 | |
| 291 | $white_label = Helper::get_white_labeling_settings(); |
| 292 | |
| 293 | $hide_notification = isset( $white_label['premium-wht-lbl-not'] ) ? $white_label['premium-wht-lbl-not'] : false; |
| 294 | |
| 295 | } |
| 296 | |
| 297 | return isset( $hide_notification ) ? $hide_notification : false; |
| 298 | } |
| 299 | |
| 300 | /** |
| 301 | * Get White Labeling - Widgets Badge string |
| 302 | * |
| 303 | * @since 1.0.0 |
| 304 | * @access public |
| 305 | * |
| 306 | * @return string |
| 307 | */ |
| 308 | public static function get_badge() { |
| 309 | |
| 310 | $badge = 'PA'; |
| 311 | |
| 312 | if ( self::check_papro_version() ) { |
| 313 | |
| 314 | $white_label = Helper::get_white_labeling_settings(); |
| 315 | |
| 316 | $badge = $white_label['premium-wht-lbl-badge']; |
| 317 | |
| 318 | } |
| 319 | |
| 320 | return '' !== $badge ? $badge : 'PA'; |
| 321 | } |
| 322 | |
| 323 | /** |
| 324 | * Get Google Maps localization prefixes |
| 325 | * |
| 326 | * @since 1.0.0 |
| 327 | * @access public |
| 328 | * |
| 329 | * @return array |
| 330 | */ |
| 331 | public static function get_google_maps_prefixes() { |
| 332 | |
| 333 | if ( null === self::$google_localize ) { |
| 334 | |
| 335 | self::$google_localize = array( |
| 336 | 'ar' => __( 'Arabic', 'premium-addons-for-elementor' ), |
| 337 | 'eu' => __( 'Basque', 'premium-addons-for-elementor' ), |
| 338 | 'bg' => __( 'Bulgarian', 'premium-addons-for-elementor' ), |
| 339 | 'bn' => __( 'Bengali', 'premium-addons-for-elementor' ), |
| 340 | 'ca' => __( 'Catalan', 'premium-addons-for-elementor' ), |
| 341 | 'cs' => __( 'Czech', 'premium-addons-for-elementor' ), |
| 342 | 'da' => __( 'Danish', 'premium-addons-for-elementor' ), |
| 343 | 'de' => __( 'German', 'premium-addons-for-elementor' ), |
| 344 | 'el' => __( 'Greek', 'premium-addons-for-elementor' ), |
| 345 | 'en' => __( 'English', 'premium-addons-for-elementor' ), |
| 346 | 'en-AU' => __( 'English (australian)', 'premium-addons-for-elementor' ), |
| 347 | 'en-GB' => __( 'English (great britain)', 'premium-addons-for-elementor' ), |
| 348 | 'es' => __( 'Spanish', 'premium-addons-for-elementor' ), |
| 349 | 'fa' => __( 'Farsi', 'premium-addons-for-elementor' ), |
| 350 | 'fi' => __( 'Finnish', 'premium-addons-for-elementor' ), |
| 351 | 'fil' => __( 'Filipino', 'premium-addons-for-elementor' ), |
| 352 | 'fr' => __( 'French', 'premium-addons-for-elementor' ), |
| 353 | 'gl' => __( 'Galician', 'premium-addons-for-elementor' ), |
| 354 | 'gu' => __( 'Gujarati', 'premium-addons-for-elementor' ), |
| 355 | 'hi' => __( 'Hindi', 'premium-addons-for-elementor' ), |
| 356 | 'hr' => __( 'Croatian', 'premium-addons-for-elementor' ), |
| 357 | 'hu' => __( 'Hungarian', 'premium-addons-for-elementor' ), |
| 358 | 'id' => __( 'Indonesian', 'premium-addons-for-elementor' ), |
| 359 | 'it' => __( 'Italian', 'premium-addons-for-elementor' ), |
| 360 | 'iw' => __( 'Hebrew', 'premium-addons-for-elementor' ), |
| 361 | 'ja' => __( 'Japanese', 'premium-addons-for-elementor' ), |
| 362 | 'kn' => __( 'Kannada', 'premium-addons-for-elementor' ), |
| 363 | 'ko' => __( 'Korean', 'premium-addons-for-elementor' ), |
| 364 | 'lt' => __( 'Lithuanian', 'premium-addons-for-elementor' ), |
| 365 | 'lv' => __( 'Latvian', 'premium-addons-for-elementor' ), |
| 366 | 'ml' => __( 'Malayalam', 'premium-addons-for-elementor' ), |
| 367 | 'mr' => __( 'Marathi', 'premium-addons-for-elementor' ), |
| 368 | 'nl' => __( 'Dutch', 'premium-addons-for-elementor' ), |
| 369 | 'no' => __( 'Norwegian', 'premium-addons-for-elementor' ), |
| 370 | 'pl' => __( 'Polish', 'premium-addons-for-elementor' ), |
| 371 | 'pt' => __( 'Portuguese', 'premium-addons-for-elementor' ), |
| 372 | 'pt-BR' => __( 'Portuguese (brazil)', 'premium-addons-for-elementor' ), |
| 373 | 'pt-PT' => __( 'Portuguese (portugal)', 'premium-addons-for-elementor' ), |
| 374 | 'ro' => __( 'Romanian', 'premium-addons-for-elementor' ), |
| 375 | 'ru' => __( 'Russian', 'premium-addons-for-elementor' ), |
| 376 | 'sk' => __( 'Slovak', 'premium-addons-for-elementor' ), |
| 377 | 'sl' => __( 'Slovenian', 'premium-addons-for-elementor' ), |
| 378 | 'sr' => __( 'Serbian', 'premium-addons-for-elementor' ), |
| 379 | 'sv' => __( 'Swedish', 'premium-addons-for-elementor' ), |
| 380 | 'tl' => __( 'Tagalog', 'premium-addons-for-elementor' ), |
| 381 | 'ta' => __( 'Tamil', 'premium-addons-for-elementor' ), |
| 382 | 'te' => __( 'Telugu', 'premium-addons-for-elementor' ), |
| 383 | 'th' => __( 'Thai', 'premium-addons-for-elementor' ), |
| 384 | 'tr' => __( 'Turkish', 'premium-addons-for-elementor' ), |
| 385 | 'uk' => __( 'Ukrainian', 'premium-addons-for-elementor' ), |
| 386 | 'vi' => __( 'Vietnamese', 'premium-addons-for-elementor' ), |
| 387 | 'zh-CN' => __( 'Chinese (simplified)', 'premium-addons-for-elementor' ), |
| 388 | 'zh-TW' => __( 'Chinese (traditional)', 'premium-addons-for-elementor' ), |
| 389 | ); |
| 390 | } |
| 391 | |
| 392 | return self::$google_localize; |
| 393 | } |
| 394 | |
| 395 | /** |
| 396 | * Checks if a plugin is installed |
| 397 | * |
| 398 | * @since 1.0.0 |
| 399 | * @access public |
| 400 | * |
| 401 | * @param string $plugin_path plugin path. |
| 402 | * |
| 403 | * @return boolean |
| 404 | */ |
| 405 | public static function is_plugin_installed( $plugin_path ) { |
| 406 | |
| 407 | require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
| 408 | |
| 409 | $plugins = get_plugins(); |
| 410 | |
| 411 | return isset( $plugins[ $plugin_path ] ); |
| 412 | } |
| 413 | |
| 414 | /** |
| 415 | * Check Plugin Active |
| 416 | * |
| 417 | * @since 4.2.5 |
| 418 | * @access public |
| 419 | * |
| 420 | * @param string $slug plugin slug. |
| 421 | * |
| 422 | * @return boolean $is_active plugin active. |
| 423 | */ |
| 424 | public static function check_plugin_active( $slug = '' ) { |
| 425 | |
| 426 | include_once ABSPATH . 'wp-admin/includes/plugin.php'; |
| 427 | |
| 428 | $is_active = in_array( $slug, (array) get_option( 'active_plugins', array() ), true ); |
| 429 | |
| 430 | return $is_active; |
| 431 | } |
| 432 | |
| 433 | /** |
| 434 | * Check if script debug mode enabled. |
| 435 | * |
| 436 | * @since 3.11.1 |
| 437 | * @access public |
| 438 | * |
| 439 | * @return boolean is debug mode enabled |
| 440 | */ |
| 441 | public static function is_debug_enabled() { |
| 442 | |
| 443 | if ( null === self::$script_debug ) { |
| 444 | |
| 445 | self::$script_debug = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG; |
| 446 | } |
| 447 | |
| 448 | return self::$script_debug; |
| 449 | } |
| 450 | |
| 451 | /** |
| 452 | * Get scripts dir. |
| 453 | * |
| 454 | * @access public |
| 455 | * |
| 456 | * @return string JS scripts directory. |
| 457 | */ |
| 458 | public static function get_scripts_dir() { |
| 459 | |
| 460 | if ( null === self::$js_dir ) { |
| 461 | |
| 462 | self::$js_dir = self::is_debug_enabled() ? 'js' : 'min-js'; |
| 463 | } |
| 464 | |
| 465 | return self::$js_dir; |
| 466 | } |
| 467 | |
| 468 | /** |
| 469 | * Get styles dir. |
| 470 | * |
| 471 | * @access public |
| 472 | * |
| 473 | * @return string CSS files directory. |
| 474 | */ |
| 475 | public static function get_styles_dir() { |
| 476 | |
| 477 | if ( null === self::$css_dir ) { |
| 478 | |
| 479 | self::$css_dir = self::is_debug_enabled() ? 'css' : 'min-css'; |
| 480 | } |
| 481 | |
| 482 | return self::$css_dir; |
| 483 | } |
| 484 | |
| 485 | /** |
| 486 | * Get assets suffix. |
| 487 | * |
| 488 | * @access public |
| 489 | * |
| 490 | * @return string JS scripts suffix. |
| 491 | */ |
| 492 | public static function get_assets_suffix() { |
| 493 | |
| 494 | if ( null === self::$assets_suffix ) { |
| 495 | |
| 496 | self::$assets_suffix = self::is_debug_enabled() ? '' : '.min'; |
| 497 | } |
| 498 | |
| 499 | return self::$assets_suffix; |
| 500 | } |
| 501 | |
| 502 | /** |
| 503 | * Get Installed Theme |
| 504 | * |
| 505 | * Returns the active theme slug |
| 506 | * |
| 507 | * @access public |
| 508 | * |
| 509 | * @return string theme slug |
| 510 | */ |
| 511 | public static function get_installed_theme() { |
| 512 | |
| 513 | if ( null === self::$current_theme ) { |
| 514 | |
| 515 | $theme = wp_get_theme(); |
| 516 | |
| 517 | if ( $theme->parent() ) { |
| 518 | |
| 519 | $theme_name = sanitize_key( $theme->parent()->get( 'Name' ) ); |
| 520 | |
| 521 | } else { |
| 522 | |
| 523 | $theme_name = $theme->get( 'Name' ); |
| 524 | |
| 525 | $theme_name = sanitize_key( $theme_name ); |
| 526 | |
| 527 | } |
| 528 | |
| 529 | self::$current_theme = $theme_name; |
| 530 | |
| 531 | } |
| 532 | |
| 533 | return self::$current_theme; |
| 534 | } |
| 535 | |
| 536 | /** |
| 537 | * Get Vimeo Video Data |
| 538 | * |
| 539 | * Get video data using Vimeo API |
| 540 | * |
| 541 | * @since 3.11.4 |
| 542 | * @access public |
| 543 | * |
| 544 | * @param string $video_id video ID. |
| 545 | */ |
| 546 | public static function get_vimeo_video_data( $video_id ) { |
| 547 | |
| 548 | $vimeo_data = get_transient( 'premium_vimeo_' . $video_id ); |
| 549 | |
| 550 | if ( $vimeo_data === false ) { |
| 551 | |
| 552 | $vimeo_data = wp_remote_get( 'http://www.vimeo.com/api/v2/video/' . intval( $video_id ) . '.php' ); |
| 553 | |
| 554 | if ( is_wp_error( $vimeo_data ) ) { |
| 555 | return false; |
| 556 | } |
| 557 | |
| 558 | if ( isset( $vimeo_data['response']['code'] ) ) { |
| 559 | |
| 560 | if ( 200 === $vimeo_data['response']['code'] ) { |
| 561 | |
| 562 | $response = maybe_unserialize( $vimeo_data['body'] ); |
| 563 | $thumbnail = isset( $response[0]['thumbnail_large'] ) ? $response[0]['thumbnail_large'] : false; |
| 564 | |
| 565 | $data = array( |
| 566 | 'src' => $thumbnail, |
| 567 | 'url' => $response[0]['user_url'], |
| 568 | 'portrait' => $response[0]['user_portrait_huge'], |
| 569 | 'title' => $response[0]['title'], |
| 570 | 'user' => $response[0]['user_name'], |
| 571 | ); |
| 572 | |
| 573 | set_transient( 'premium_vimeo_' . $video_id, $data, WEEK_IN_SECONDS ); |
| 574 | |
| 575 | return $data; |
| 576 | |
| 577 | } |
| 578 | } |
| 579 | } |
| 580 | |
| 581 | return $vimeo_data; |
| 582 | } |
| 583 | |
| 584 | /** |
| 585 | * Get Video Thumbnail |
| 586 | * |
| 587 | * Get thumbnail URL for embed or self hosted |
| 588 | * |
| 589 | * @since 3.7.0 |
| 590 | * @access public |
| 591 | * |
| 592 | * @param string $video_id video ID. |
| 593 | * @param string $type embed type. |
| 594 | * @param string $size youtube thumbnail size. |
| 595 | */ |
| 596 | public static function get_video_thumbnail( $video_id, $type, $size = '' ) { |
| 597 | |
| 598 | $thumbnail_src = 'transparent'; |
| 599 | |
| 600 | if ( 'youtube' === $type ) { |
| 601 | if ( '' === $size ) { |
| 602 | $size = 'maxresdefault'; |
| 603 | } |
| 604 | $thumbnail_src = sprintf( 'https://i.ytimg.com/vi/%s/%s.jpg', $video_id, $size ); |
| 605 | |
| 606 | } elseif ( 'vimeo' === $type ) { |
| 607 | |
| 608 | $vimeo = self::get_vimeo_video_data( $video_id ); |
| 609 | |
| 610 | $thumbnail_src = is_array( $vimeo ) ? $vimeo['src'] : ''; |
| 611 | |
| 612 | } elseif ( 'dailymotion' === $type ) { |
| 613 | $video_data = wp_remote_get( 'https://api.dailymotion.com/video/' . $video_id . '?fields=thumbnail_url' ); |
| 614 | |
| 615 | if ( is_wp_error( $video_data ) || 200 !== wp_remote_retrieve_response_code( $video_data ) ) { |
| 616 | return $thumbnail_src; |
| 617 | } |
| 618 | |
| 619 | $video_data = wp_remote_retrieve_body( $video_data ); |
| 620 | $video_data = json_decode( $video_data ); |
| 621 | |
| 622 | $thumbnail_src = $video_data->thumbnail_url; |
| 623 | } |
| 624 | |
| 625 | return $thumbnail_src; |
| 626 | } |
| 627 | |
| 628 | /** |
| 629 | * Transient Expire |
| 630 | * |
| 631 | * Gets expire time of transient. |
| 632 | * |
| 633 | * @since 3.20.8 |
| 634 | * @access public |
| 635 | * |
| 636 | * @param string $period transient expiration period. |
| 637 | * |
| 638 | * @return string $expire_time expire time in seconds. |
| 639 | */ |
| 640 | public static function transient_expire( $period ) { |
| 641 | |
| 642 | $expire_time = 24 * HOUR_IN_SECONDS; |
| 643 | |
| 644 | switch ( $period ) { |
| 645 | case 'minute': |
| 646 | $expire_time = MINUTE_IN_SECONDS; |
| 647 | break; |
| 648 | case 'minutes': |
| 649 | $expire_time = 5 * MINUTE_IN_SECONDS; |
| 650 | break; |
| 651 | case 'hour': |
| 652 | $expire_time = 60 * MINUTE_IN_SECONDS; |
| 653 | break; |
| 654 | case 'week': |
| 655 | $expire_time = 7 * DAY_IN_SECONDS; |
| 656 | break; |
| 657 | case 'month': |
| 658 | $expire_time = 30 * DAY_IN_SECONDS; |
| 659 | break; |
| 660 | case 'year': |
| 661 | $expire_time = 365 * DAY_IN_SECONDS; |
| 662 | break; |
| 663 | default: |
| 664 | $expire_time = 24 * HOUR_IN_SECONDS; |
| 665 | } |
| 666 | |
| 667 | return $expire_time; |
| 668 | } |
| 669 | |
| 670 | /** |
| 671 | * Get Campaign Link |
| 672 | * |
| 673 | * @since 3.20.9 |
| 674 | * @access public |
| 675 | * |
| 676 | * @param string $link page link. |
| 677 | * @param string $source source. |
| 678 | * @param string $medium media. |
| 679 | * @param string $campaign campaign name. |
| 680 | * |
| 681 | * @return string $link campaign URL |
| 682 | */ |
| 683 | public static function get_campaign_link( $link, $source, $medium, $campaign = '' ) { |
| 684 | |
| 685 | if ( null === self::$current_theme ) { |
| 686 | self::get_installed_theme(); |
| 687 | } |
| 688 | |
| 689 | $args = array( |
| 690 | 'utm_source' => $source, |
| 691 | 'utm_medium' => $medium, |
| 692 | 'utm_campaign' => $campaign, |
| 693 | 'utm_term' => self::$current_theme, |
| 694 | ); |
| 695 | |
| 696 | $args = array_filter( $args ); |
| 697 | |
| 698 | $url = add_query_arg( $args, $link ); |
| 699 | |
| 700 | return $url; |
| 701 | } |
| 702 | |
| 703 | /** |
| 704 | * Get Elementor UI Theme |
| 705 | * |
| 706 | * Detects user setting for UI theme |
| 707 | * |
| 708 | * @since 3.21.1 |
| 709 | * @access public |
| 710 | * |
| 711 | * @return string $theme UI Theme |
| 712 | */ |
| 713 | public static function get_elementor_ui_theme() { |
| 714 | |
| 715 | $theme = SettingsManager::get_settings_managers( 'editorPreferences' )->get_model()->get_settings( 'ui_theme' ); |
| 716 | |
| 717 | return $theme; |
| 718 | } |
| 719 | |
| 720 | /** |
| 721 | * Check PAPRO Version |
| 722 | * |
| 723 | * Check if PAPRO version is updated |
| 724 | * |
| 725 | * @since 3.21.6 |
| 726 | * @access public |
| 727 | * |
| 728 | * @return boolean |
| 729 | */ |
| 730 | public static function check_papro_version() { |
| 731 | return defined( 'PREMIUM_PRO_ADDONS_VERSION' ); |
| 732 | } |
| 733 | |
| 734 | /** |
| 735 | * Valide HTML Tag |
| 736 | * |
| 737 | * Validates an HTML tag against a safe allowed list. |
| 738 | * |
| 739 | * @param string $tag HTML tag. |
| 740 | * |
| 741 | * @return string |
| 742 | */ |
| 743 | public static function validate_html_tag( $tag ) { |
| 744 | return in_array( strtolower( $tag ), self::ALLOWED_HTML_WRAPPER_TAGS, true ) ? $tag : 'div'; |
| 745 | } |
| 746 | |
| 747 | /** |
| 748 | * Get Image Data |
| 749 | * |
| 750 | * Returns image data based on image id. |
| 751 | * |
| 752 | * @since 0.0.1 |
| 753 | * @access public |
| 754 | * |
| 755 | * @param int $image_id Image ID. |
| 756 | * @param string $image_url Image URL. |
| 757 | * @param array $image_size Image sizes array. |
| 758 | * |
| 759 | * @return array $data image data. |
| 760 | */ |
| 761 | public static function get_image_data( $image_id, $image_url, $image_size ) { |
| 762 | |
| 763 | if ( ! $image_id && ! $image_url ) { |
| 764 | return false; |
| 765 | } |
| 766 | |
| 767 | $data = array(); |
| 768 | |
| 769 | $image_url = esc_url_raw( $image_url ); |
| 770 | |
| 771 | if ( ! empty( $image_id ) ) { // Existing attachment. |
| 772 | |
| 773 | $attachment = get_post( $image_id ); |
| 774 | |
| 775 | if ( is_object( $attachment ) ) { |
| 776 | $data['id'] = $image_id; |
| 777 | $data['url'] = $image_url; |
| 778 | |
| 779 | $data['image'] = wp_get_attachment_image( $attachment->ID, $image_size, true ); |
| 780 | $data['image_size'] = $image_size; |
| 781 | $data['caption'] = $attachment->post_excerpt; |
| 782 | $data['title'] = $attachment->post_title; |
| 783 | $data['description'] = $attachment->post_content; |
| 784 | |
| 785 | } |
| 786 | } else { // Placeholder image, most likely. |
| 787 | |
| 788 | if ( empty( $image_url ) ) { |
| 789 | return; |
| 790 | } |
| 791 | |
| 792 | $data['id'] = false; |
| 793 | $data['url'] = $image_url; |
| 794 | $data['image'] = '<img src="' . $image_url . '" alt="" title="" />'; |
| 795 | $data['image_size'] = $image_size; |
| 796 | $data['caption'] = ''; |
| 797 | $data['title'] = ''; |
| 798 | $data['description'] = ''; |
| 799 | } |
| 800 | |
| 801 | return $data; |
| 802 | } |
| 803 | |
| 804 | /** |
| 805 | * Returns the current page id. |
| 806 | * get_the_ID returns the first product ID in the loop if it's the shop page. |
| 807 | * and it sometimes returns a wrong ID in the other cases. |
| 808 | * |
| 809 | * @access public |
| 810 | * @since 4.11.8 |
| 811 | * @return int |
| 812 | */ |
| 813 | public static function pa_get_current_page_id() { |
| 814 | |
| 815 | if ( class_exists( 'woocommerce' ) ) { |
| 816 | |
| 817 | switch ( true ) { |
| 818 | case is_shop(): |
| 819 | $page_id = wc_get_page_id( 'shop' ); |
| 820 | break; |
| 821 | |
| 822 | case is_cart(): |
| 823 | $page_id = wc_get_page_id( 'cart' ); |
| 824 | break; |
| 825 | |
| 826 | case is_checkout(): |
| 827 | $page_id = wc_get_page_id( 'checkout' ); |
| 828 | break; |
| 829 | |
| 830 | case is_account_page(): |
| 831 | $page_id = wc_get_page_id( 'myaccount' ); |
| 832 | break; |
| 833 | |
| 834 | default: |
| 835 | $page_id = get_the_ID(); |
| 836 | break; |
| 837 | } |
| 838 | } else { |
| 839 | $page_id = get_the_ID(); |
| 840 | } |
| 841 | |
| 842 | return $page_id; |
| 843 | } |
| 844 | |
| 845 | /** |
| 846 | * Get Final Result. |
| 847 | * |
| 848 | * @access public |
| 849 | * @since 4.4.8 |
| 850 | * |
| 851 | * @param bool $condition_result result. |
| 852 | * @param string $operator operator. |
| 853 | * |
| 854 | * @return bool |
| 855 | */ |
| 856 | public static function get_final_result( $condition_result, $operator ) { |
| 857 | |
| 858 | if ( 'is' === $operator ) { |
| 859 | return true === $condition_result; |
| 860 | } else { |
| 861 | return true !== $condition_result; |
| 862 | } |
| 863 | } |
| 864 | |
| 865 | /** |
| 866 | * Get Local Time ( WordPress TimeZone Setting ). |
| 867 | * |
| 868 | * @access public |
| 869 | * @since 4.4.8 |
| 870 | * |
| 871 | * @param string $format format. |
| 872 | */ |
| 873 | public static function get_local_time( $format ) { |
| 874 | |
| 875 | $local_time_zone = isset( $_COOKIE['localTimeZone'] ) && ! empty( $_COOKIE['localTimeZone'] ) ? |
| 876 | str_replace( 'GMT ', 'GMT+', sanitize_text_field( wp_unslash( $_COOKIE['localTimeZone'] ) ) ) |
| 877 | : self::get_location_time_zone(); |
| 878 | |
| 879 | // $today = new \DateTime( 'now', new \DateTimeZone( $local_time_zone ) ); |
| 880 | |
| 881 | try { |
| 882 | $today = new \DateTime( 'now', new \DateTimeZone( $local_time_zone ) ); |
| 883 | } catch ( \Exception $e ) { |
| 884 | $today = new \DateTime( 'now', new \DateTimeZone( 'UTC' ) ); |
| 885 | } |
| 886 | |
| 887 | return $today->format( $format ); |
| 888 | } |
| 889 | |
| 890 | /** |
| 891 | * Gets the user's timezone based on his ip address. |
| 892 | * |
| 893 | * @access public |
| 894 | * @since 4.10.26 |
| 895 | * |
| 896 | * @return string |
| 897 | */ |
| 898 | public static function get_location_time_zone() { |
| 899 | |
| 900 | $ip_address = self::get_user_ip_address(); |
| 901 | |
| 902 | return self::get_timezone_by_ip( $ip_address ); |
| 903 | } |
| 904 | |
| 905 | /** |
| 906 | * Get user's IP address. |
| 907 | * |
| 908 | * @access public |
| 909 | * @since 4.10.26 |
| 910 | * |
| 911 | * @return string |
| 912 | */ |
| 913 | public static function get_user_ip_address() { |
| 914 | |
| 915 | if ( isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { |
| 916 | |
| 917 | $x_forward = sanitize_text_field( wp_unslash( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ); |
| 918 | |
| 919 | if ( is_array( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { |
| 920 | |
| 921 | $http_x_headers = explode( ',', filter_var_array( $x_forward ) ); |
| 922 | $_SERVER['REMOTE_ADDR'] = $http_x_headers[0]; |
| 923 | } else { |
| 924 | $_SERVER['REMOTE_ADDR'] = $x_forward; |
| 925 | } |
| 926 | } |
| 927 | |
| 928 | return isset( $_SERVER['REMOTE_ADDR'] ) ? sanitize_text_field( wp_unslash( $_SERVER['REMOTE_ADDR'] ) ) : ''; |
| 929 | } |
| 930 | |
| 931 | /** |
| 932 | * Get timezone by ip address. |
| 933 | * |
| 934 | * @access public |
| 935 | * @since 4.10.26 |
| 936 | * |
| 937 | * @param string $ip_address user's ip address. |
| 938 | * |
| 939 | * @return string |
| 940 | */ |
| 941 | public static function get_timezone_by_ip( $ip_address ) { |
| 942 | |
| 943 | if ( '127.0.0.1' === $ip_address || empty( $ip_address ) ) { |
| 944 | return date_default_timezone_get(); |
| 945 | } |
| 946 | |
| 947 | $location_data = wp_remote_get( |
| 948 | 'https://api.findip.net/' . $ip_address . '/?token=e21d68c353324af0af206c907e77ff97', |
| 949 | array( |
| 950 | 'timeout' => 15, |
| 951 | 'sslverify' => false, |
| 952 | ) |
| 953 | ); |
| 954 | |
| 955 | if ( is_wp_error( $location_data ) || empty( $location_data ) ) { |
| 956 | return date_default_timezone_get(); // localhost. |
| 957 | } |
| 958 | |
| 959 | $location_data = json_decode( wp_remote_retrieve_body( $location_data ), true ); |
| 960 | |
| 961 | $time_zone = strtolower( $location_data['location']['time_zone'] ); |
| 962 | |
| 963 | return $time_zone; |
| 964 | } |
| 965 | |
| 966 | /** |
| 967 | * Get Site Server Time ( WordPress TimeZone Setting ). |
| 968 | * |
| 969 | * @access public |
| 970 | * @since 4.4.8 |
| 971 | * |
| 972 | * @param string $format format. |
| 973 | */ |
| 974 | public static function get_site_server_time( $format ) { |
| 975 | |
| 976 | $today = gmdate( $format, strtotime( 'now' ) + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ) ); |
| 977 | |
| 978 | return $today; |
| 979 | } |
| 980 | |
| 981 | /** |
| 982 | * Get All Breakpoints. |
| 983 | * |
| 984 | * @param string $type result return type. |
| 985 | * |
| 986 | * @access public |
| 987 | * @since 4.6.1 |
| 988 | * |
| 989 | * @return array $devices enabled breakpoints. |
| 990 | */ |
| 991 | public static function get_all_breakpoints( $type = 'assoc' ) { |
| 992 | |
| 993 | $devices = array( |
| 994 | 'desktop' => __( 'Desktop', 'elementor' ), |
| 995 | 'tablet' => __( 'Tablet', 'elementor' ), |
| 996 | 'mobile' => __( 'Mobile', 'elementor' ), |
| 997 | ); |
| 998 | |
| 999 | $method_available = method_exists( Plugin::$instance->breakpoints, 'has_custom_breakpoints' ); |
| 1000 | |
| 1001 | if ( ( defined( 'ELEMENTOR_VERSION' ) && version_compare( ELEMENTOR_VERSION, '3.4.0', '>' ) ) && $method_available ) { |
| 1002 | |
| 1003 | if ( Plugin::$instance->breakpoints->has_custom_breakpoints() ) { |
| 1004 | $devices = array_merge( |
| 1005 | $devices, |
| 1006 | array( |
| 1007 | 'widescreen' => __( 'Widescreen', 'elementor' ), |
| 1008 | 'laptop' => __( 'Laptop', 'elementor' ), |
| 1009 | 'tablet_extra' => __( 'Tablet Extra', 'elementor' ), |
| 1010 | 'mobile_extra' => __( 'Mobile Extra', 'elementor' ), |
| 1011 | ) |
| 1012 | ); |
| 1013 | } |
| 1014 | } |
| 1015 | |
| 1016 | if ( 'keys' === $type ) { |
| 1017 | $devices = array_keys( $devices ); |
| 1018 | } |
| 1019 | |
| 1020 | return $devices; |
| 1021 | } |
| 1022 | |
| 1023 | /** |
| 1024 | * Get WordPress language prefixes. |
| 1025 | * |
| 1026 | * @since 4.4.8 |
| 1027 | * @access public |
| 1028 | * |
| 1029 | * @return array |
| 1030 | */ |
| 1031 | public static function get_lang_prefixes() { |
| 1032 | |
| 1033 | if ( null === self::$lang_locales ) { |
| 1034 | |
| 1035 | $langs = require_once PREMIUM_ADDONS_PATH . 'includes/pa-display-conditions/lang-locale.php'; |
| 1036 | |
| 1037 | foreach ( $langs as $lang => $props ) { |
| 1038 | /* translators: %s: Language Name */ |
| 1039 | $val = ucwords( $props['name'] ); |
| 1040 | self::$lang_locales[ $lang ] = $val; |
| 1041 | } |
| 1042 | } |
| 1043 | |
| 1044 | return self::$lang_locales; |
| 1045 | } |
| 1046 | |
| 1047 | /** |
| 1048 | * Get Woocommerce Categories. |
| 1049 | * |
| 1050 | * @access public |
| 1051 | * @since 4.4.8 |
| 1052 | * |
| 1053 | * @param string $id array key. |
| 1054 | * |
| 1055 | * @return array |
| 1056 | */ |
| 1057 | public static function get_woo_categories( $id = 'slug' ) { |
| 1058 | |
| 1059 | $product_cat = array(); |
| 1060 | |
| 1061 | $cat_args = array( |
| 1062 | 'taxonomy' => 'product_cat', |
| 1063 | 'orderby' => 'name', |
| 1064 | 'order' => 'asc', |
| 1065 | 'hide_empty' => false, |
| 1066 | ); |
| 1067 | |
| 1068 | $product_categories = get_terms( $cat_args ); |
| 1069 | |
| 1070 | if ( ! empty( $product_categories ) ) { |
| 1071 | |
| 1072 | foreach ( $product_categories as $key => $category ) { |
| 1073 | |
| 1074 | $cat_id = 'slug' === $id ? $category->slug : $category->term_id; |
| 1075 | $product_cat[ $cat_id ] = $category->name; |
| 1076 | |
| 1077 | } |
| 1078 | } |
| 1079 | |
| 1080 | return $product_cat; |
| 1081 | } |
| 1082 | |
| 1083 | /** |
| 1084 | * Check Elementor Experiment |
| 1085 | * |
| 1086 | * Check if an Elementor experiment is enabled. |
| 1087 | * |
| 1088 | * @since 4.8.6 |
| 1089 | * @access public |
| 1090 | * |
| 1091 | * @param string $experiment feature ID. |
| 1092 | * |
| 1093 | * @return boolean $is_enabled is feature enabled. |
| 1094 | */ |
| 1095 | public static function check_elementor_experiment( $experiment ) { |
| 1096 | |
| 1097 | $experiments_manager = Plugin::$instance->experiments; |
| 1098 | |
| 1099 | $is_enabled = $experiments_manager->is_feature_active( $experiment ); |
| 1100 | |
| 1101 | return $is_enabled; |
| 1102 | } |
| 1103 | |
| 1104 | /** |
| 1105 | * Is Edit Mode. |
| 1106 | * |
| 1107 | * @access public |
| 1108 | * @since 4.6.1 |
| 1109 | * |
| 1110 | * @return boolean |
| 1111 | */ |
| 1112 | public static function is_edit_mode() { |
| 1113 | return isset( $_REQUEST['elementor-preview'] ) && ! empty( $_REQUEST['elementor-preview'] ); // phpcs:ignore WordPress.Security.NonceVerification |
| 1114 | } |
| 1115 | |
| 1116 | /** |
| 1117 | * Generate Unique ID |
| 1118 | * |
| 1119 | * Generates a unique ID for the current page. |
| 1120 | * |
| 1121 | * @since 4.6.9 |
| 1122 | * @access public |
| 1123 | * |
| 1124 | * @param string $id page ID. |
| 1125 | * |
| 1126 | * @return string unique ID. |
| 1127 | */ |
| 1128 | public static function generate_unique_id( $id ) { |
| 1129 | return substr( md5( $id ), 0, 9 ); |
| 1130 | } |
| 1131 | |
| 1132 | /** |
| 1133 | * Get Safe Path |
| 1134 | * |
| 1135 | * @since 4.6.9 |
| 1136 | * @access public |
| 1137 | * |
| 1138 | * @param string $file_path unsafe file path. |
| 1139 | * |
| 1140 | * @return string safe file path. |
| 1141 | */ |
| 1142 | public static function get_safe_path( $file_path ) { |
| 1143 | |
| 1144 | $path = str_replace( array( '//', '\\\\' ), array( '/', '\\' ), $file_path ); |
| 1145 | |
| 1146 | return str_replace( array( '/', '\\' ), DIRECTORY_SEPARATOR, $path ); |
| 1147 | } |
| 1148 | |
| 1149 | /** |
| 1150 | * Check if the current post type should include addons. |
| 1151 | * |
| 1152 | * @param string $id current post ID. |
| 1153 | * |
| 1154 | * @since 4.9.18 |
| 1155 | * @access public |
| 1156 | */ |
| 1157 | public static function check_post_type( $id ) { |
| 1158 | |
| 1159 | if ( ! $id ) { |
| 1160 | return false; |
| 1161 | } |
| 1162 | |
| 1163 | $template_name = get_post_meta( $id, '_elementor_template_type', true ); |
| 1164 | |
| 1165 | $template_list = array( |
| 1166 | 'header', |
| 1167 | 'footer', |
| 1168 | 'single', |
| 1169 | 'post', |
| 1170 | 'page', |
| 1171 | 'archive', |
| 1172 | 'search-results', |
| 1173 | 'error-404', |
| 1174 | 'product', |
| 1175 | 'product-archive', |
| 1176 | 'section', |
| 1177 | ); |
| 1178 | |
| 1179 | return in_array( $template_name, $template_list ); |
| 1180 | } |
| 1181 | |
| 1182 | /** |
| 1183 | * Get Draw SVG Notice |
| 1184 | * |
| 1185 | * @since 4.9.26 |
| 1186 | * @access public |
| 1187 | * |
| 1188 | * @param object $elem element object. |
| 1189 | * @param string $search search query. |
| 1190 | * @param array $conditions control conditions |
| 1191 | */ |
| 1192 | public static function get_draw_svg_notice( $elem, $search, $conditions, $index = 0, $nested = 'condition' ) { |
| 1193 | |
| 1194 | $url = add_query_arg( |
| 1195 | array( |
| 1196 | 'page' => 'premium-addons', |
| 1197 | 'search' => $search, |
| 1198 | '#tab' => 'elements', |
| 1199 | ), |
| 1200 | esc_url( admin_url( 'admin.php' ) ) |
| 1201 | ); |
| 1202 | |
| 1203 | $control_attr = array( |
| 1204 | 'type' => Controls_Manager::RAW_HTML, |
| 1205 | 'raw' => __( 'You need first to enable SVG Draw option checkbox from ', 'premium-addons-for-elementor' ) . '<a href="' . esc_url( $url ) . '" target="_blank">' . __( 'here.', 'premium-addons-for-elementor' ) . '</a>', |
| 1206 | 'classes' => 'editor-pa-control-notice', |
| 1207 | 'content_classes' => 'elementor-panel-alert elementor-panel-alert-warning', |
| 1208 | ); |
| 1209 | |
| 1210 | $control_attr[ $nested ] = $conditions; |
| 1211 | |
| 1212 | $elem->add_control( |
| 1213 | 'draw_svg_notice_' . $index, |
| 1214 | $control_attr |
| 1215 | ); |
| 1216 | } |
| 1217 | |
| 1218 | /** |
| 1219 | * Checks if Elementor PRO 3.8 or higher is activated && if the Loop experiment is activated. |
| 1220 | * |
| 1221 | * @since 4.9.45 |
| 1222 | * @access public |
| 1223 | * |
| 1224 | * @return bool |
| 1225 | */ |
| 1226 | public static function is_loop_exp_enabled() { |
| 1227 | |
| 1228 | if ( defined( 'ELEMENTOR_PRO_VERSION' ) ) { |
| 1229 | |
| 1230 | if ( version_compare( ELEMENTOR_PRO_VERSION, '3.16.0', '>=' ) ) { |
| 1231 | return true; |
| 1232 | } elseif ( version_compare( ELEMENTOR_PRO_VERSION, '3.8', '>=' ) ) { |
| 1233 | $is_loop_enabled = self::check_elementor_experiment( 'loop' ); |
| 1234 | |
| 1235 | if ( $is_loop_enabled ) { |
| 1236 | return true; |
| 1237 | } |
| 1238 | } |
| 1239 | } |
| 1240 | |
| 1241 | return false; |
| 1242 | } |
| 1243 | |
| 1244 | /** |
| 1245 | * Get Element Classes. |
| 1246 | * |
| 1247 | * @access private |
| 1248 | * @since 2.8.22 |
| 1249 | * |
| 1250 | * @param array $devices devices to hide on. |
| 1251 | * |
| 1252 | * @return array |
| 1253 | */ |
| 1254 | public static function get_element_classes( $devices, $default = array() ) { |
| 1255 | |
| 1256 | $classes = $default; |
| 1257 | |
| 1258 | if ( count( $devices ) ) { |
| 1259 | foreach ( $devices as $index => $device ) { |
| 1260 | array_push( $classes, 'elementor-hidden-' . $device ); |
| 1261 | } |
| 1262 | |
| 1263 | array_push( $classes, 'premium-addons-element' ); |
| 1264 | } |
| 1265 | |
| 1266 | return $classes; |
| 1267 | } |
| 1268 | |
| 1269 | /** |
| 1270 | * Round Numbers In A Reading-friendly Format. |
| 1271 | * |
| 1272 | * @param integer $num followers number. |
| 1273 | */ |
| 1274 | public static function premium_format_numbers( $num ) { |
| 1275 | $num = intval( $num ); |
| 1276 | $result = ''; |
| 1277 | |
| 1278 | if ( $num >= 1000000000 ) { |
| 1279 | $tmp = round( ( $num / 1000000 ), 1 ); |
| 1280 | $result = $tmp . 'B'; |
| 1281 | return $result; |
| 1282 | } |
| 1283 | |
| 1284 | if ( $num >= 1000000 ) { |
| 1285 | $tmp = round( ( $num / 1000000 ), 1 ); |
| 1286 | $result = $tmp . 'M'; |
| 1287 | return $result; |
| 1288 | } |
| 1289 | |
| 1290 | if ( $num >= 1000 ) { |
| 1291 | $tmp = round( ( $num / 1000 ), 1 ); |
| 1292 | $result = $tmp . 'K'; |
| 1293 | |
| 1294 | return $result; |
| 1295 | } |
| 1296 | |
| 1297 | return round( $num, 1 ); |
| 1298 | } |
| 1299 | |
| 1300 | /** |
| 1301 | * Get Contact Form Body |
| 1302 | * |
| 1303 | * @since 4.10.2 |
| 1304 | * @access public |
| 1305 | * |
| 1306 | * @param string $preset form preset. |
| 1307 | * |
| 1308 | * @return void |
| 1309 | */ |
| 1310 | public static function get_cf_form_body( $preset ) { |
| 1311 | |
| 1312 | $forms_array = array( |
| 1313 | |
| 1314 | 'preset1' => '<div class="premium-cf-full"><label class="premium-cf-label">Email</label> |
| 1315 | [email* email-1 class:premium-cf-field placeholder "john@smith.com"]</div> |
| 1316 | [submit "Subscribe"]', |
| 1317 | |
| 1318 | 'preset2' => '<div class="premium-cf-full"><label class="premium-cf-label">Name</label> |
| 1319 | [text* text-1 class:premium-cf-field placeholder "John Smith"]</div> |
| 1320 | |
| 1321 | <div class="premium-cf-full"><label class="premium-cf-label">Email</label> |
| 1322 | [email* email-1 class:premium-cf-field placeholder "john@smith.com"]</div> |
| 1323 | |
| 1324 | [submit "Send"]', |
| 1325 | |
| 1326 | 'preset3' => '<div class="premium-cf-full"><label class="premium-cf-label">Name</label> |
| 1327 | [text* text-1 class:premium-cf-field placeholder "John Smith"]</div> |
| 1328 | |
| 1329 | <div class="premium-cf-full"><label class="premium-cf-label">Email</label> |
| 1330 | [email* email-1 class:premium-cf-field placeholder "john@smith.com"]</div> |
| 1331 | |
| 1332 | <div class="premium-cf-full"><label class="premium-cf-label">Message</label> |
| 1333 | [textarea* textarea-1 class:premium-cf-field placeholder "Enter your message here..."]</div> |
| 1334 | |
| 1335 | [submit "Send"]', |
| 1336 | |
| 1337 | 'preset4' => '<div class="premium-cf-half"><label class="premium-cf-label">Name</label> |
| 1338 | [text* text-1 class:premium-cf-field placeholder "John Smith"]</div> |
| 1339 | |
| 1340 | <div class="premium-cf-half"><label class="premium-cf-label">Email</label> |
| 1341 | [email* email-1 class:premium-cf-field placeholder "john@smith.com"]</div> |
| 1342 | |
| 1343 | <div class="premium-cf-full"><label class="premium-cf-label">Message</label> |
| 1344 | [textarea* textarea-1 class:premium-cf-field placeholder "Enter your message here..."]</div> |
| 1345 | |
| 1346 | [submit "Send"]', |
| 1347 | |
| 1348 | 'preset5' => '<div class="premium-cf-half"><label class="premium-cf-label">First Name</label> |
| 1349 | [text* text-1 class:premium-cf-field placeholder "John"]</div> |
| 1350 | |
| 1351 | <div class="premium-cf-half"><label class="premium-cf-label">Last Name</label> |
| 1352 | [text* text-2 class:premium-cf-field placeholder "Smith"]</div> |
| 1353 | |
| 1354 | <div class="premium-cf-half"><label class="premium-cf-label">Email</label> |
| 1355 | [email* email-1 class:premium-cf-field placeholder "john@smith.com"]</div> |
| 1356 | |
| 1357 | <div class="premium-cf-half"><label class="premium-cf-label">Phone</label> |
| 1358 | [tel* tel-1 class:premium-cf-field placeholder "+13137262547"]</div> |
| 1359 | |
| 1360 | <div class="premium-cf-full"><label class="premium-cf-label">Gender</label> |
| 1361 | [select menu-1 "Male" "Female"]</div> |
| 1362 | |
| 1363 | <div class="premium-cf-full"><label class="premium-cf-label">Message</label> |
| 1364 | [textarea* textarea-1 class:premium-cf-field placeholder "Enter your message here..."]</div> |
| 1365 | [submit "Send"]', |
| 1366 | |
| 1367 | 'preset6' => '<div class="premium-cf-half"><label class="premium-cf-label">First Name</label> |
| 1368 | [text* text-1 class:premium-cf-field placeholder "John"]</div> |
| 1369 | |
| 1370 | <div class="premium-cf-half"><label class="premium-cf-label">Last Name</label> |
| 1371 | [text* text-2 class:premium-cf-field placeholder "Smith"]</div> |
| 1372 | |
| 1373 | <div class="premium-cf-half"><label class="premium-cf-label">Email</label> |
| 1374 | [email* email-1 class:premium-cf-field placeholder "john@smith.com"]</div> |
| 1375 | |
| 1376 | <div class="premium-cf-half"><label class="premium-cf-label">Phone</label> |
| 1377 | [tel* tel-1 class:premium-cf-field placeholder "+13137262547"]</div> |
| 1378 | |
| 1379 | <div class="premium-cf-full"><label class="premium-cf-label">Company Size</label> |
| 1380 | [radio radio-1 default:1 "1-10 employees" "11-30 employees" "30-50 employees" "Above 50 employee"] |
| 1381 | </div> |
| 1382 | |
| 1383 | <div class="premium-cf-full"><label class="premium-cf-label">Message</label> |
| 1384 | [textarea* textarea-1 class:premium-cf-field placeholder "Enter your message here..."]</div> |
| 1385 | [submit "Send"]', |
| 1386 | |
| 1387 | ); |
| 1388 | |
| 1389 | return $forms_array[ $preset ]; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 1390 | } |
| 1391 | |
| 1392 | /** |
| 1393 | * Render Rating Stars |
| 1394 | * |
| 1395 | * @since 4.10.13 |
| 1396 | * @access public |
| 1397 | * |
| 1398 | * @param float $rating rating score. |
| 1399 | * @param string $fill_color fill color. |
| 1400 | * @param string $empty_color empty color. |
| 1401 | * @param float $star_size star size. |
| 1402 | */ |
| 1403 | public static function render_rating_stars( $rating, $fill_color, $empty_color, $star_size ) { |
| 1404 | |
| 1405 | ?> |
| 1406 | |
| 1407 | <span class="premium-fb-rev-stars"> |
| 1408 | <?php |
| 1409 | |
| 1410 | foreach ( array( 1, 2, 3, 4, 5 ) as $val ) { |
| 1411 | $score = round( ( $rating - $val ), 2 ); |
| 1412 | |
| 1413 | if ( $score >= -0.2 ) { |
| 1414 | |
| 1415 | ?> |
| 1416 | <span class="premium-fb-rev-star"><svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" version="1.1" width="<?php echo esc_attr( $star_size ); ?>" height="<?php echo esc_attr( $star_size ); ?>" viewBox="0 0 1792 1792"><path d="M1728 647q0 22-26 48l-363 354 86 500q1 7 1 20 0 21-10.5 35.5t-30.5 14.5q-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z" fill="<?php echo esc_attr( $fill_color ); ?>"></path></svg></span> |
| 1417 | <?php |
| 1418 | } elseif ( $score > -0.8 && $score < -0.2 ) { |
| 1419 | ?> |
| 1420 | <span class="premium-fb-rev-star"><svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" version="1.1" width="<?php echo esc_attr( $star_size ); ?>" height="<?php echo esc_attr( $star_size ); ?>" viewBox="0 0 1792 1792"><path d="M1250 957l257-250-356-52-66-10-30-60-159-322v963l59 31 318 168-60-355-12-66zm452-262l-363 354 86 500q5 33-6 51.5t-34 18.5q-17 0-40-12l-449-236-449 236q-23 12-40 12-23 0-34-18.5t-6-51.5l86-500-364-354q-32-32-23-59.5t54-34.5l502-73 225-455q20-41 49-41 28 0 49 41l225 455 502 73q45 7 54 34.5t-24 59.5z" fill="<?php echo esc_attr( $fill_color ); ?>"></path></svg></span> |
| 1421 | <?php } else { ?> |
| 1422 | <span class="premium-fb-rev-star"><svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" version="1.1" width="<?php echo esc_attr( $star_size ); ?>" height="<?php echo esc_attr( $star_size ); ?>" viewBox="0 0 1792 1792"><path d="M1201 1004l306-297-422-62-189-382-189 382-422 62 306 297-73 421 378-199 377 199zm527-357q0 22-26 48l-363 354 86 500q1 7 1 20 0 50-41 50-19 0-40-12l-449-236-449 236q-22 12-40 12-21 0-31.5-14.5t-10.5-35.5q0-6 2-20l86-500-364-354q-25-27-25-48 0-37 56-46l502-73 225-455q19-41 49-41t49 41l225 455 502 73q56 9 56 46z" fill="<?php echo esc_attr( $empty_color ); ?>"></path></svg></span> |
| 1423 | <?php |
| 1424 | } |
| 1425 | } |
| 1426 | ?> |
| 1427 | </span> |
| 1428 | |
| 1429 | <?php |
| 1430 | } |
| 1431 | |
| 1432 | |
| 1433 | /** |
| 1434 | * Get SVG Shapes |
| 1435 | * |
| 1436 | * @since 4.10.13 |
| 1437 | * @access public |
| 1438 | */ |
| 1439 | public static function get_svg_shapes( $shape = '' ) { |
| 1440 | |
| 1441 | if ( null === self::$shapes ) { |
| 1442 | |
| 1443 | self::$shapes = require PREMIUM_ADDONS_PATH . 'modules/premium-shape-divider/shapes.php'; |
| 1444 | |
| 1445 | } |
| 1446 | |
| 1447 | $shapes = self::$shapes; |
| 1448 | |
| 1449 | if ( empty( $shape ) ) { |
| 1450 | return $shapes; |
| 1451 | } else { |
| 1452 | return $shapes[ $shape ]['imagesmall']; |
| 1453 | } |
| 1454 | } |
| 1455 | |
| 1456 | public static function get_btn_svgs( $style = 'line1' ) { |
| 1457 | |
| 1458 | $html = ''; |
| 1459 | |
| 1460 | switch ( $style ) { |
| 1461 | case 'line1': |
| 1462 | $html = '<div class="premium-btn-line-wrap"><svg class="premium-btn-svg" aria-hidden="true" width="100%" height="9" viewBox="0 0 101 9"> |
| 1463 | <path d="M.426 1.973C4.144 1.567 17.77-.514 21.443 1.48 24.296 3.026 24.844 4.627 27.5 7c3.075 2.748 6.642-4.141 10.066-4.688 7.517-1.2 13.237 5.425 17.59 2.745C58.5 3 60.464-1.786 66 2c1.996 1.365 3.174 3.737 5.286 4.41 5.423 1.727 25.34-7.981 29.14-1.294" pathLength="1"></path> |
| 1464 | </svg></div>'; |
| 1465 | break; |
| 1466 | |
| 1467 | case 'line3': |
| 1468 | $html = '<div class="premium-btn-line-wrap"><svg class="premium-btn-svg" aria-hidden="true" width="100%" height="18" viewBox="0 0 59 18"> |
| 1469 | <path d="M.945.149C12.3 16.142 43.573 22.572 58.785 10.842" pathLength="1"></path> |
| 1470 | </svg></div>'; |
| 1471 | break; |
| 1472 | |
| 1473 | case 'line4': |
| 1474 | $html = '<svg class="premium-btn-svg" aria-hidden="true" width="300%" height="100%" viewBox="0 0 1200 60" preserveAspectRatio="none"> |
| 1475 | <path d="M0,56.5c0,0,298.666,0,399.333,0C448.336,56.5,513.994,46,597,46c77.327,0,135,10.5,200.999,10.5c95.996,0,402.001,0,402.001,0"></path> |
| 1476 | </svg>'; |
| 1477 | break; |
| 1478 | |
| 1479 | default: |
| 1480 | // code... |
| 1481 | break; |
| 1482 | } |
| 1483 | |
| 1484 | return $html; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped |
| 1485 | } |
| 1486 | |
| 1487 | /** |
| 1488 | * Add Button Hover Controls |
| 1489 | * |
| 1490 | * @since 4.10.17 |
| 1491 | * @access public |
| 1492 | * |
| 1493 | * @param object $elem widget object. |
| 1494 | * @param array $conditions controls conditions. |
| 1495 | */ |
| 1496 | public static function add_btn_hover_controls( $elem, $conditions ) { |
| 1497 | |
| 1498 | $elem->add_control( |
| 1499 | 'premium_button_hover_effect', |
| 1500 | array( |
| 1501 | 'label' => __( 'Hover Effect', 'premium-addons-for-elementor' ), |
| 1502 | 'type' => Controls_Manager::SELECT, |
| 1503 | 'default' => 'none', |
| 1504 | 'options' => array( |
| 1505 | 'none' => __( 'None', 'premium-addons-for-elementor' ), |
| 1506 | 'style1' => __( 'Slide', 'premium-addons-for-elementor' ), |
| 1507 | 'style2' => __( 'Shutter', 'premium-addons-for-elementor' ), |
| 1508 | 'style5' => apply_filters( 'pa_pro_label', __( 'In & Out (Pro)', 'premium-addons-for-elementor' ) ), |
| 1509 | 'style6' => apply_filters( 'pa_pro_label', __( 'Grow (Pro)', 'premium-addons-for-elementor' ) ), |
| 1510 | 'style7' => apply_filters( 'pa_pro_label', __( 'Double Layers (Pro)', 'premium-addons-for-elementor' ) ), |
| 1511 | 'style8' => apply_filters( 'pa_pro_label', __( 'Animated Underline (Pro)', 'premium-addons-for-elementor' ) ), |
| 1512 | ), |
| 1513 | 'separator' => 'before', |
| 1514 | 'label_block' => true, |
| 1515 | 'condition' => $conditions, |
| 1516 | ) |
| 1517 | ); |
| 1518 | |
| 1519 | do_action( 'pa_button_hover_controls', $elem, $conditions ); |
| 1520 | |
| 1521 | $elem->add_control( |
| 1522 | 'premium_button_style1_dir', |
| 1523 | array( |
| 1524 | 'label' => __( 'Slide Direction', 'premium-addons-for-elementor' ), |
| 1525 | 'type' => Controls_Manager::SELECT, |
| 1526 | 'default' => 'bottom', |
| 1527 | 'options' => array( |
| 1528 | 'bottom' => __( 'Top to Bottom', 'premium-addons-for-elementor' ), |
| 1529 | 'top' => __( 'Bottom to Top', 'premium-addons-for-elementor' ), |
| 1530 | 'left' => __( 'Right to Left', 'premium-addons-for-elementor' ), |
| 1531 | 'right' => __( 'Left to Right', 'premium-addons-for-elementor' ), |
| 1532 | ), |
| 1533 | 'condition' => array_merge( |
| 1534 | $conditions, |
| 1535 | array( |
| 1536 | 'premium_button_hover_effect' => 'style1', |
| 1537 | ) |
| 1538 | ), |
| 1539 | 'label_block' => true, |
| 1540 | ) |
| 1541 | ); |
| 1542 | |
| 1543 | $elem->add_control( |
| 1544 | 'premium_button_style2_dir', |
| 1545 | array( |
| 1546 | 'label' => __( 'Shutter Direction', 'premium-addons-for-elementor' ), |
| 1547 | 'type' => Controls_Manager::SELECT, |
| 1548 | 'default' => 'shutouthor', |
| 1549 | 'options' => array( |
| 1550 | 'shutinhor' => __( 'Shutter in Horizontal', 'premium-addons-for-elementor' ), |
| 1551 | 'shutinver' => __( 'Shutter in Vertical', 'premium-addons-for-elementor' ), |
| 1552 | 'shutoutver' => __( 'Shutter out Horizontal', 'premium-addons-for-elementor' ), |
| 1553 | 'shutouthor' => __( 'Shutter out Vertical', 'premium-addons-for-elementor' ), |
| 1554 | 'scshutoutver' => __( 'Scaled Shutter Vertical', 'premium-addons-for-elementor' ), |
| 1555 | 'scshutouthor' => __( 'Scaled Shutter Horizontal', 'premium-addons-for-elementor' ), |
| 1556 | 'dshutinver' => __( 'Tilted Left', 'premium-addons-for-elementor' ), |
| 1557 | 'dshutinhor' => __( 'Tilted Right', 'premium-addons-for-elementor' ), |
| 1558 | ), |
| 1559 | 'condition' => array_merge( |
| 1560 | $conditions, |
| 1561 | array( |
| 1562 | 'premium_button_hover_effect' => 'style2', |
| 1563 | ) |
| 1564 | ), |
| 1565 | 'label_block' => true, |
| 1566 | ) |
| 1567 | ); |
| 1568 | } |
| 1569 | |
| 1570 | /** |
| 1571 | * Add Templates Controls |
| 1572 | * |
| 1573 | * @since 4.11.25 |
| 1574 | * @access public |
| 1575 | * |
| 1576 | * @param string $keyword keyword for templates. |
| 1577 | * @param string $demo demo url. |
| 1578 | */ |
| 1579 | public static function add_templates_controls( $element, $keyword, $demo ) { |
| 1580 | |
| 1581 | if ( ! Admin_Helper::check_element_by_key( 'premium-templates' ) ) { |
| 1582 | return; |
| 1583 | } |
| 1584 | |
| 1585 | $element->add_control( |
| 1586 | 'premium_templates_links', |
| 1587 | array( |
| 1588 | 'type' => Controls_Manager::RAW_HTML, |
| 1589 | 'raw' => '<div class="premium-promote-box widget-box"> |
| 1590 | <div class="premium-promote-ctas"> |
| 1591 | <a class="premium-promote-demo elementor-button elementor-button-default" href="' . esc_url( $demo ) . '" target="_blank"> ' . |
| 1592 | __( 'Widget Demo', 'premium-addons-for-elementor' ) . |
| 1593 | '</a> |
| 1594 | <a class="premium-promote-upgrade premium-widget-blocks elementor-button elementor-button-default" href="#" data-keyword="' . esc_attr( $keyword ) . '">' . |
| 1595 | __( 'Templates', 'premium-addons-for-elementor' ) . |
| 1596 | '</a> |
| 1597 | </div> |
| 1598 | </div>', |
| 1599 | ) |
| 1600 | ); |
| 1601 | } |
| 1602 | |
| 1603 | /** |
| 1604 | * Add Templates Controls |
| 1605 | * |
| 1606 | * @since 4.11.29 |
| 1607 | * @access public |
| 1608 | * |
| 1609 | * @param string $keyword keyword for templates. |
| 1610 | * @param string $demo demo url. |
| 1611 | */ |
| 1612 | public static function register_papro_promotion_controls( $element, $keyword ) { |
| 1613 | |
| 1614 | if ( ! self::check_papro_version() ) { |
| 1615 | |
| 1616 | $pro_link = self::get_campaign_link( 'https://premiumaddons.com/pro/#get-pa-pro', $keyword, 'wp-editor', 'get-pro' ); |
| 1617 | |
| 1618 | $element->start_controls_section( |
| 1619 | 'section_pro_features_field', |
| 1620 | array( |
| 1621 | 'label' => __( 'Go Pro for More Features', 'premium-addons-for-elementor' ), |
| 1622 | ) |
| 1623 | ); |
| 1624 | |
| 1625 | $element->add_control( |
| 1626 | 'pa_pro_promotion_notice', |
| 1627 | array( |
| 1628 | 'type' => Controls_Manager::NOTICE, |
| 1629 | 'notice_type' => 'info', |
| 1630 | 'dismissible' => false, |
| 1631 | 'content' => __( '<b>Build smarter and faster</b> with premium widgets, 580+ container blocks, and advanced customization controls — all available in the <a href="' . esc_url( $pro_link ) . '" target="_blank">PA Pro</a>. <b>Save up to $105!</b>.', 'premium-addons-for-elementor' ), |
| 1632 | ) |
| 1633 | ); |
| 1634 | |
| 1635 | $element->end_controls_section(); |
| 1636 | } |
| 1637 | } |
| 1638 | |
| 1639 | /** |
| 1640 | * Get Button Class |
| 1641 | * |
| 1642 | * @since 4.10.17 |
| 1643 | * @access public |
| 1644 | * |
| 1645 | * @param $settings object widget settings. |
| 1646 | * |
| 1647 | * @return string $class css class. |
| 1648 | */ |
| 1649 | public static function get_button_class( $settings ) { |
| 1650 | |
| 1651 | $class = ''; |
| 1652 | |
| 1653 | $papro_activated = self::check_papro_version(); |
| 1654 | |
| 1655 | if ( ! $papro_activated && ! in_array( $settings['premium_button_hover_effect'], array( 'none', 'style1', 'style2' ) ) ) { |
| 1656 | return ''; |
| 1657 | } |
| 1658 | |
| 1659 | if ( 'style1' === $settings['premium_button_hover_effect'] ) { |
| 1660 | $class = 'premium-button-style1-' . $settings['premium_button_style1_dir']; |
| 1661 | } elseif ( 'style2' === $settings['premium_button_hover_effect'] ) { |
| 1662 | $class = 'premium-button-style2-' . $settings['premium_button_style2_dir']; |
| 1663 | } elseif ( 'style5' === $settings['premium_button_hover_effect'] ) { |
| 1664 | $class = 'premium-button-style5-' . $settings['premium_button_style5_dir']; |
| 1665 | } elseif ( 'style6' === $settings['premium_button_hover_effect'] ) { |
| 1666 | $class = 'premium-button-style6'; |
| 1667 | } elseif ( 'style7' === $settings['premium_button_hover_effect'] ) { |
| 1668 | $class = 'premium-button-style7-' . $settings['premium_button_style7_dir']; |
| 1669 | } elseif ( 'style8' === $settings['premium_button_hover_effect'] ) { |
| 1670 | $class = 'premium-button-' . $settings['underline_style']; |
| 1671 | } |
| 1672 | |
| 1673 | return 'premium-button-' . $settings['premium_button_hover_effect'] . ' ' . $class; |
| 1674 | } |
| 1675 | |
| 1676 | |
| 1677 | /** |
| 1678 | * Get Empty Query Message |
| 1679 | * |
| 1680 | * Written in PHP and used to generate the final HTML when the query is empty |
| 1681 | * |
| 1682 | * @since 4.10.29 |
| 1683 | * @access protected |
| 1684 | * |
| 1685 | * @param string $notice empty query notice. |
| 1686 | */ |
| 1687 | public static function render_empty_query_message( $notice ) { |
| 1688 | |
| 1689 | if ( empty( $notice ) ) { |
| 1690 | $notice = __( 'The current query has no posts. Please make sure you have published items matching your query.', 'premium-addons-for-elementor' ); |
| 1691 | } |
| 1692 | |
| 1693 | ?> |
| 1694 | <div class="premium-error-notice"> |
| 1695 | <?php echo wp_kses_post( $notice ); ?> |
| 1696 | </div> |
| 1697 | <?php |
| 1698 | } |
| 1699 | |
| 1700 | /** |
| 1701 | * Check Capability |
| 1702 | * |
| 1703 | * @since 4.10.28 |
| 1704 | * @access public |
| 1705 | * |
| 1706 | * @param string $check capability. |
| 1707 | */ |
| 1708 | public static function check_capability( $capability ) { |
| 1709 | |
| 1710 | $post_author_id = get_the_author_meta( 'ID' ); |
| 1711 | |
| 1712 | $current_user_can = user_can( $post_author_id, $capability ); |
| 1713 | |
| 1714 | return $current_user_can; |
| 1715 | } |
| 1716 | |
| 1717 | |
| 1718 | /** |
| 1719 | * Get Allowed Icon Tags |
| 1720 | * |
| 1721 | * Returns an array of allowed HTML tags. |
| 1722 | * |
| 1723 | * @since 4.10.69 |
| 1724 | * @access public |
| 1725 | * |
| 1726 | * @return array Array of allowed HTML tags. |
| 1727 | */ |
| 1728 | public static function get_allowed_icon_tags() { |
| 1729 | return array( |
| 1730 | 'svg' => array( |
| 1731 | 'id' => array(), |
| 1732 | 'class' => array(), |
| 1733 | 'aria-hidden' => array(), |
| 1734 | 'aria-labelledby' => array(), |
| 1735 | 'role' => array(), |
| 1736 | 'xmlns' => array(), |
| 1737 | 'width' => array(), |
| 1738 | 'height' => array(), |
| 1739 | 'viewbox' => array(), |
| 1740 | 'data-*' => true, |
| 1741 | ), |
| 1742 | 'g' => array( 'fill' => array() ), |
| 1743 | 'title' => array( 'title' => array() ), |
| 1744 | 'path' => array( |
| 1745 | 'd' => array(), |
| 1746 | 'fill' => array(), |
| 1747 | ), |
| 1748 | 'i' => array( |
| 1749 | 'class' => array(), |
| 1750 | 'id' => array(), |
| 1751 | 'style' => array(), |
| 1752 | ), |
| 1753 | ); |
| 1754 | } |
| 1755 | |
| 1756 | /** |
| 1757 | * Get SVG By Icon |
| 1758 | * |
| 1759 | * @since 4.10.69 |
| 1760 | * @access public |
| 1761 | */ |
| 1762 | public static function get_svg_by_icon( $icon, $attributes = array() ) { |
| 1763 | |
| 1764 | if ( empty( $icon ) || empty( $icon['value'] ) || empty( $icon['library'] ) ) { |
| 1765 | return ''; |
| 1766 | } |
| 1767 | |
| 1768 | // If icon library is SVG, then go to Elementor. Used for widgets where this function is called in all cases. |
| 1769 | if ( false === strpos( $icon['library'], 'fa-' ) ) { |
| 1770 | |
| 1771 | if ( is_string( $attributes ) ) { |
| 1772 | $attributes = str_replace( '"', '', $attributes ); |
| 1773 | } |
| 1774 | |
| 1775 | $svg_html = Icons_Manager::try_get_icon_html( $icon, wp_parse_args( $attributes, array( 'aria-hidden' => 'true' ) ) ); |
| 1776 | |
| 1777 | return $svg_html; |
| 1778 | } |
| 1779 | |
| 1780 | $icon['font_family'] = 'font-awesome'; |
| 1781 | |
| 1782 | $i_class = str_replace( ' ', '-', $icon['value'] ); |
| 1783 | |
| 1784 | $svg_html = '<svg '; |
| 1785 | |
| 1786 | $icon = self::get_icon_svg_data( $icon ); |
| 1787 | |
| 1788 | if ( ! $icon ) { |
| 1789 | // Icons_Manager::render_icon( $icon, array( 'aria-hidden' => 'true' ) ); |
| 1790 | Icons_Manager::render_icon( $icon, wp_parse_args( $attributes, array( 'aria-hidden' => 'true' ) ) ); |
| 1791 | return; |
| 1792 | } |
| 1793 | |
| 1794 | $view_box = '0 0 ' . $icon['width'] . ' ' . $icon['height']; |
| 1795 | |
| 1796 | if ( is_array( $attributes ) ) { |
| 1797 | |
| 1798 | foreach ( $attributes as $key => $value ) { |
| 1799 | |
| 1800 | if ( 'class' === $key ) { |
| 1801 | |
| 1802 | $svg_html .= 'class="svg-inline--' . $i_class . ' ' . $value . '" '; |
| 1803 | |
| 1804 | } else { |
| 1805 | $svg_html .= " {$key}='{$value}' "; |
| 1806 | } |
| 1807 | } |
| 1808 | } else { |
| 1809 | |
| 1810 | $attributes = str_replace( 'class="', 'class="svg-inline--' . $i_class . ' ', $attributes ); |
| 1811 | |
| 1812 | $svg_html .= $attributes; |
| 1813 | } |
| 1814 | |
| 1815 | $svg_html .= " aria-hidden='true' xmlns='http://www.w3.org/2000/svg' viewBox='{$view_box}'>"; |
| 1816 | |
| 1817 | $svg_html .= '<path d="' . esc_attr( $icon['path'] ) . '"></path>'; |
| 1818 | $svg_html .= '</svg>'; |
| 1819 | |
| 1820 | return wp_kses( $svg_html, self::get_allowed_icon_tags() ); |
| 1821 | } |
| 1822 | |
| 1823 | /** |
| 1824 | * Get Elementor Template ID |
| 1825 | * |
| 1826 | * @since 4.10.80 |
| 1827 | * @access public |
| 1828 | * |
| 1829 | * @param string $title template title. |
| 1830 | * |
| 1831 | * @return string $template_id template ID. |
| 1832 | */ |
| 1833 | public static function get_elementor_template_id( $title ) { |
| 1834 | |
| 1835 | if ( empty( $title ) ) { |
| 1836 | return; |
| 1837 | } |
| 1838 | |
| 1839 | $args = array( |
| 1840 | 'post_type' => 'elementor_library', |
| 1841 | 'post_status' => 'publish', |
| 1842 | 'posts_per_page' => 1, |
| 1843 | 'title' => $title, |
| 1844 | 'suppress_filters' => true, |
| 1845 | ); |
| 1846 | |
| 1847 | $query = new \WP_Query( $args ); |
| 1848 | |
| 1849 | $post_id = ''; |
| 1850 | |
| 1851 | if ( $query->have_posts() ) { |
| 1852 | $post_id = $query->post->ID; |
| 1853 | |
| 1854 | wp_reset_postdata(); |
| 1855 | } |
| 1856 | |
| 1857 | return $post_id; |
| 1858 | } |
| 1859 | |
| 1860 | /** |
| 1861 | * Render Elementor Template |
| 1862 | * |
| 1863 | * @since 4.10.80 |
| 1864 | * @access public |
| 1865 | * |
| 1866 | * @param string|int $title Template Title||id. |
| 1867 | * @param bool $id indicates if $title is the template title or id. |
| 1868 | * |
| 1869 | * @return $template_content string HTML Markup of the selected template. |
| 1870 | */ |
| 1871 | public static function render_elementor_template( $title, $id = false ) { |
| 1872 | |
| 1873 | $frontend = Plugin::$instance->frontend; |
| 1874 | |
| 1875 | $custom_temp = apply_filters( 'pa_temp_id', false ); |
| 1876 | |
| 1877 | if ( $custom_temp ) { |
| 1878 | $id = $title = $custom_temp; |
| 1879 | } |
| 1880 | |
| 1881 | if ( ! $id ) { |
| 1882 | $id = self::get_elementor_template_id( $title ); |
| 1883 | |
| 1884 | if ( ! $id ) { |
| 1885 | // To replace the – in templates names with dash. |
| 1886 | $decoded_title = html_entity_decode( $title ); |
| 1887 | $id = self::get_elementor_template_id( $decoded_title ); |
| 1888 | } |
| 1889 | |
| 1890 | $id = apply_filters( 'wpml_object_id', $id, 'elementor_library', true ); |
| 1891 | } else { |
| 1892 | $id = $title; |
| 1893 | } |
| 1894 | |
| 1895 | // $template_content = $frontend->get_builder_content( $id, true ); |
| 1896 | $template_content = $frontend->get_builder_content_for_display( $id, true ); |
| 1897 | |
| 1898 | return $template_content; |
| 1899 | } |
| 1900 | |
| 1901 | /** |
| 1902 | * Get Device Type |
| 1903 | * |
| 1904 | * @since 4.11.50 |
| 1905 | * @access public |
| 1906 | * |
| 1907 | * @return string device type. |
| 1908 | */ |
| 1909 | public static function get_device_type() { |
| 1910 | |
| 1911 | static $device_type = null; |
| 1912 | |
| 1913 | // Return cached result if already detected. |
| 1914 | if ( null !== $device_type ) { |
| 1915 | return $device_type; |
| 1916 | } |
| 1917 | |
| 1918 | // Default to desktop. |
| 1919 | $device_type = 'desktop'; |
| 1920 | |
| 1921 | // Only load Device_Detector if not already loaded. |
| 1922 | if ( ! class_exists( 'PremiumAddons\Includes\Helpers\Device_Detector' ) ) { |
| 1923 | require_once PREMIUM_ADDONS_PATH . 'includes/helpers/device-detector.php'; |
| 1924 | } |
| 1925 | |
| 1926 | $detect = new Helpers\Device_Detector(); |
| 1927 | |
| 1928 | // Detect device type with priority: tablet > mobile > desktop. |
| 1929 | if ( $detect->isTablet() ) { |
| 1930 | $device_type = 'tablet'; |
| 1931 | } elseif ( $detect->isMobile() ) { |
| 1932 | $device_type = 'mobile'; |
| 1933 | } |
| 1934 | |
| 1935 | return $device_type; |
| 1936 | } |
| 1937 | |
| 1938 | /** |
| 1939 | * Get Widget Class Name |
| 1940 | * |
| 1941 | * @since 4.11.51 |
| 1942 | * @access public |
| 1943 | * |
| 1944 | * @param string $widget_key Widget slug/key, e.g. 'premium-banner'. |
| 1945 | * @return string|false Fully-qualified class name on success, false on failure. |
| 1946 | */ |
| 1947 | public static function get_widget_class_name( $widget_key ) { |
| 1948 | |
| 1949 | static $classes_list = null; |
| 1950 | |
| 1951 | $default_namespace = 'PremiumAddons\\Widgets\\'; |
| 1952 | |
| 1953 | // load the map once. |
| 1954 | if ( null === $classes_list ) { |
| 1955 | |
| 1956 | $map_file = PREMIUM_ADDONS_PATH . 'includes/helpers/widget-class-map.php'; |
| 1957 | |
| 1958 | if ( file_exists( $map_file ) ) { |
| 1959 | |
| 1960 | $map = include $map_file; |
| 1961 | $classes_list = is_array( $map ) ? $map : []; |
| 1962 | } else { |
| 1963 | $classes_list = []; |
| 1964 | } |
| 1965 | } |
| 1966 | |
| 1967 | if ( empty( $widget_key ) || ! is_string( $widget_key ) ) { |
| 1968 | return false; |
| 1969 | } |
| 1970 | |
| 1971 | if ( ! isset( $classes_list[ $widget_key ] ) ) { |
| 1972 | return false; |
| 1973 | } |
| 1974 | |
| 1975 | $class_name = $classes_list[ $widget_key ]; |
| 1976 | |
| 1977 | if ( is_string( $class_name ) && false !== strpos( $class_name, '\\' ) ) { |
| 1978 | return $class_name; |
| 1979 | } |
| 1980 | |
| 1981 | // Otherwise treat as short class name and prepend the default namespace. |
| 1982 | $short_class = (string) $class_name; |
| 1983 | $full_class = rtrim( $default_namespace, '\\' ) . '\\' . ltrim( $short_class, '\\' ); |
| 1984 | |
| 1985 | return $full_class; |
| 1986 | } |
| 1987 | } |
| 1988 |