PluginProbe
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder / 2.0.3
Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder v2.0.3
3.1.4 3.0.8 3.0.9 3.1.0 3.1.2 3.1.3 3.0.7 3.0.5 3.0.4 3.0.3 3.0.2 trunk 1.5.0 1.5.1 1.5.2 1.6.1 1.6.2 1.6.3 1.6.4 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 All 93 releases
ultimate-store-kit / includes / builder / meta.php

meta.php in Ultimate Store Kit – Store Builder Addons for Elementor, WooCommerce Store Builder, EDD Store Builder 2.0.3, at includes/builder/meta.php

26 lines 499 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace UltimateStoreKit\Includes\Builder;
4
5 if ( ! defined( 'ABSPATH' ) ) {
6 exit;
7 } // Exit if accessed directly
8
9 use UltimateStoreKit\Includes\Builder\Builder_Template_Helper;
10 use \UltimateStoreKit\Base\Singleton;
11
12 class Meta {
13
14 use Singleton;
15
16 const POST_TYPE = 'usk-template-builder';
17
18 const EDIT_WITH = '_ultimate_store_kit_edit_with';
19
20 const TEMPLATE_TYPE = '_ultimate_store_kit_template_type';
21
22 const TEMPLATE_ID = '_usk_template_';
23
24 const SAMPLE_POST_ID = 'sample_post_id';
25 }
26