| Server IP : 104.26.5.103 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/leapdubai/public_html/wp-content/plugins/kirki/app/Constants/ |
Upload File : |
<?php
namespace Kirki\App\Constants;
defined('ABSPATH') || exit;
use Kirki\Framework\Concerns\HasConstants;
class PageMetaKeys
{
use HasConstants;
/**
* @see KIRKI_META_NAME_FOR_STAGED_VERSIONS
*/
const STAGED_VERSIONS = 'kirki_stage_versions';
/**
* @see KIRKI_GLOBAL_STYLE_BLOCK_META_KEY
*/
const STYLE_BLOCK = 'kirki_global_style_block';
/**
* @see KIRKI_GLOBAL_STYLE_BLOCK_META_KEY_RANDOM
*/
const STYLE_BLOCK_RANDOM = 'kirki_global_style_block_random';
/**
* @see KIRKI_META_NAME_FOR_USED_STYLE_BLOCK_IDS
*/
const USED_STYLE_BLOCK_IDS = 'kirki_used_style_block_ids';
/**
* @see KIRKI_META_NAME_FOR_USED_STYLE_BLOCK_IDS_RANDOM
*/
const USED_STYLE_BLOCK_IDS_RANDOM = 'kirki_used_style_block_ids_random';
/**
* @see KIRKI_META_NAME_FOR_USED_FONT_LIST
*/
const USED_FONT_LIST = 'kirki_used_font_list';
/**
* @see 'kirki'
*/
const BLOCKS = 'kirki';
/**
* @see KIRKI_META_NAME_FOR_POST_EDITOR_MODE
*/
const EDITOR_MODE = 'kirki_editor_mode';
const TEMPLATE_CONDITIONS = 'kirki_template_conditions';
const TEMPLATE_COLLECTION_TYPE = 'kirki_template_collection_type';
const UTILITY_PAGE_TYPE = 'kirki_utility_page_type';
const PAGE_TEMPLATE = '_wp_page_template';
/**
* @see KIRKI_META_NAME_FOR_PAGE_HF_SYMBOL_DISABLE_STATUS
*/
const DISABLED_PAGE_SYMBOLS = 'kirki_disabled_page_symbols';
const VARIABLE_MODE ='kirki_variable_mode';
const CUSTOM_CODE = 'kirki_page_custom_code';
const SEO_SETTINGS = 'kirki_page_seo_settings';
public static function get_single_post_keys()
{
return [
static::VARIABLE_MODE,
static::DISABLED_PAGE_SYMBOLS,
static::TEMPLATE_CONDITIONS,
static::TEMPLATE_COLLECTION_TYPE,
static::UTILITY_PAGE_TYPE,
static::BLOCKS,
static::STYLE_BLOCK_RANDOM,
static::USED_FONT_LIST,
];
}
}