PluginProbe
King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder / 51.1.83
King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder v51.1.83
51.1.83 51.1.82 51.1.81 51.1.79 51.1.78 51.1.77 51.1.76 51.1.74 51.1.75 51.1.65 51.1.64 51.1.63 trunk 51.1.14 51.1.2 51.1.35 51.1.36 51.1.37 51.1.38 51.1.39 51.1.44 51.1.45 51.1.46 51.1.47 51.1.49 All 37 releases
king-addons / includes / helpers / Theme_Builder / Meta_Keys.php

Meta_Keys.php in King Addons for Elementor – 80+ Elementor Widgets, 4 000+ Elementor Templates, WooCommerce, Mega Menu, Popup Builder 51.1.83, at includes/helpers/Theme_Builder/Meta_Keys.php

34 lines 894 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Theme Builder meta key definitions.
4 *
5 * @package King_Addons
6 */
7
8 namespace King_Addons\Theme_Builder;
9
10 if (!defined('ABSPATH')) {
11 exit;
12 }
13
14 /**
15 * Holds meta key names used by the Theme Builder.
16 */
17 class Meta_Keys
18 {
19 public const ENABLED = '_ka_theme_builder_enabled';
20 public const LOCATION = '_ka_theme_builder_location';
21 public const SUB_LOCATION = '_ka_theme_builder_sub_location';
22 public const CONDITIONS = '_ka_theme_builder_conditions';
23 public const PRIORITY = '_ka_theme_builder_priority';
24 public const IS_PRO_ONLY = '_ka_theme_builder_is_pro_only';
25 public const PREVIEW_POST_ID = '_ka_theme_builder_preview_post_id';
26 public const PREVIEW_TERM_ID = '_ka_theme_builder_preview_term_id';
27 public const PREVIEW_AUTHOR_ID = '_ka_theme_builder_preview_author_id';
28 public const PREVIEW_QUERY = '_ka_theme_builder_preview_query';
29 }
30
31
32
33
34