STRATO-apps/wordpress_03/app/wp-content/plugins/bdthemes-element-pack/includes/builder/meta.php

SHA-256: 97c1975d99e4e63f6f2edd290816ae5f6d81b2d4b91f501753aa6f5cfba8cf8b
<?php

namespace ElementPack\Includes\Builder;

if (!defined('ABSPATH')) {
    exit;
} // Exit if accessed directly

use ElementPack\Includes\Builder\Builder_Template_Helper;
use \ElementPack\Base\Singleton;

class Meta {

    use Singleton;

    const POST_TYPE = 'bdt-template-builder';

    const EDIT_WITH = '_bdthemes_builder_edit_with';

    const TEMPLATE_TYPE = '_bdthemes_builder_template_type';

    const TEMPLATE_ID = '_bdthemes_builder_';

    const SAMPLE_POST_ID = 'sample_post_id';
}