| 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/Supports/Facades/ |
Upload File : |
<?php
namespace Kirki\App\Supports\Facades;
defined( 'ABSPATH' ) || exit;
use Kirki\App\DTO\Page\EditorPagePayloadDTO;
use Kirki\App\Managers\PageManager;
use Kirki\Framework\Collections\Collection;
use Kirki\Framework\Facade;
/**
* Page Support Facade
* @method static void save_random_global_style_blocks(int $page_id, $data = [], $staging_version = false)
* @method static void save_global_style_blocks(int $page_id, $data = [], $staging_version = false)
* @method static void save_used_style_block_ids(int $page_id, $data = [], $staging_version = false)
* @method static void save_random_used_style_block_ids(int $page_id, $data = [], $staging_version = false)
* @method static void save_used_font_list(int $page_id, $data = [], $staging_version = false)
* @method static void save_blocks(int $page_id, $data = [], $staging_version = false)
* @method static void save_editor_mode(int $page_id)
* @method static array save_staging_data(EditorPagePayloadDTO $payload)
* @method static array|false set_last_edited_datetime_of_stage_version(int $page_id)
* @method static int get_most_recent_stage_version(int $page_id, $stage_must = true, $restoring = false, $old_version = false)
* @method static Collection get_all_staged_versions(int $page_id, bool $create_if_empty = true)
* @method static Collection publish_stage_version(int $page_id)
* @method static string get_staged_meta_name(string $meta_name, int $page_id, $stage_version = false, $stage_only = false)
* @method static array|null get_published_staged_version_info(int $page_id)
* @method static int|false get_published_stage_version(int $page_id)
* @method static void update_page_styleblocks(int $page_id, $style_blocks)
* @method static array get_page_styleblocks(int $page_id, $stage_version = false)
* @method static mixed get_global_data_using_key(string $key)
* @method static array merge_style_blocks($a, $b)
* @method static string get_variable_mode($page)
* @method static array get_all_block_post_ids()
* @method static int|null get_most_recent_unpublished_stage_version(int $page_id)
*
* @see \Kirki\App\Managers\PageManager
*/
class Page extends Facade
{
public static function get_accessor()
{
return PageManager::class;
}
}