PATH:
home
/
beestk
/
autocaz
/
wp-includes
<?php /** * Blocks API: WP_Block class * * @package WordPress * @since 5.5.0 */ /** * Class representing a parsed instance of a block. * * @since 5.5.0 * @property array $attributes */ #[AllowDynamicProperties] class WP_Block { /** * Original parsed array representation of block. * * @since 5.5.0 * @var array */ public $parsed_block; /** * Name of block. * * @example "core/paragraph" * * @since 5.5.0 * @var string */ public $name; /** * Block type associated with the instance. * * @since 5.5.0 * @var WP_Block_Type */ public $block_type; /** * Block context values. * * @since 5.5.0 * @var array */ public $context = array(); /** * All available context of the current hierarchy. * * @since 5.5.0 * @var array * @access protected */ protected $available_context; /** * Block type registry. * * @since 5.9.0 * @var WP_Block_Type_Registry * @access protected */ protected $registry; /** * List of inner blocks (of this same class) * * @since 5.5.0 * @var WP_Block_List */ public $inner_blocks = array(); /** * Resultant HTML from inside block comment delimiters after removing inner * blocks. * * @example "...Just <!-- wp:test /--> testing..." -> "Just testing..." * * @since 5.5.0 * @var string */ public $inner_html = ''; /** * List of string fragments and null markers where inner blocks were found * * @example array( * 'inner_html' => 'BeforeInnerAfter', * 'inner_blocks' => array( block, block ), * 'inner_content' => array( 'Before', null, 'Inner', null, 'After' ), * ) * * @since 5.5.0 * @var array */ public $inner_content = array(); /** * Constructor. * * Populates object properties from the provided block instance argument. * * The given array of context values will not necessarily be available on * the instance itself, but is treated as the full set of values provided by * the block's ancestry. This is assigned to the private `available_context` * property. Only values which are configured to consumed by the block via * its registered type will be assigned to the block's `context` property. * * @since 5.5.0 * * @param array $block Array of parsed block properties. * @param array $available_context Optional array of ancestry context values. * @param WP_Block_Type_Registry $registry Optional block type registry. */ public function __construct( $block, $available_context = array(), $registry = null ) { $this->parsed_block = $block; $this->name = $block['blockName']; if ( is_null( $registry ) ) { $registry = WP_Block_Type_Registry::get_instance(); } $this->registry = $registry; $this->block_type = $registry->get_registered( $this->name ); $this->available_context = $available_context; if ( ! empty( $this->block_type->uses_context ) ) { foreach ( $this->block_type->uses_context as $context_name ) { if ( array_key_exists( $context_name, $this->available_context ) ) { $this->context[ $context_name ] = $this->available_context[ $context_name ]; } } } if ( ! empty( $block['innerBlocks'] ) ) { $child_context = $this->available_context; if ( ! empty( $this->block_type->provides_context ) ) { foreach ( $this->block_type->provides_context as $context_name => $attribute_name ) { if ( array_key_exists( $attribute_name, $this->attributes ) ) { $child_context[ $context_name ] = $this->attributes[ $attribute_name ]; } } } $this->inner_blocks = new WP_Block_List( $block['innerBlocks'], $child_context, $registry ); } if ( ! empty( $block['innerHTML'] ) ) { $this->inner_html = $block['innerHTML']; } if ( ! empty( $block['innerContent'] ) ) { $this->inner_content = $block['innerContent']; } } /** * Returns a value from an inaccessible property. * * This is used to lazily initialize the `attributes` property of a block, * such that it is only prepared with default attributes at the time that * the property is accessed. For all other inaccessible properties, a `null` * value is returned. * * @since 5.5.0 * * @param string $name Property name. * @return array|null Prepared attributes, or null. */ public function __get( $name ) { if ( 'attributes' === $name ) { $this->attributes = isset( $this->parsed_block['attrs'] ) ? $this->parsed_block['attrs'] : array(); if ( ! is_null( $this->block_type ) ) { $this->attributes = $this->block_type->prepare_attributes_for_render( $this->attributes ); } return $this->attributes; } return null; } /** * Generates the render output for the block. * * @since 5.5.0 * * @global WP_Post $post Global post object. * * @param array $options { * Optional options object. * * @type bool $dynamic Defaults to 'true'. Optionally set to false to avoid using the block's render_callback. * } * @return string Rendered block output. */ public function render( $options = array() ) { global $post; $options = wp_parse_args( $options, array( 'dynamic' => true, ) ); $is_dynamic = $options['dynamic'] && $this->name && null !== $this->block_type && $this->block_type->is_dynamic(); $block_content = ''; if ( ! $options['dynamic'] || empty( $this->block_type->skip_inner_blocks ) ) { $index = 0; foreach ( $this->inner_content as $chunk ) { if ( is_string( $chunk ) ) { $block_content .= $chunk; } else { $inner_block = $this->inner_blocks[ $index ]; $parent_block = $this; /** This filter is documented in wp-includes/blocks.php */ $pre_render = apply_filters( 'pre_render_block', null, $inner_block->parsed_block, $parent_block ); if ( ! is_null( $pre_render ) ) { $block_content .= $pre_render; } else { $source_block = $inner_block->parsed_block; /** This filter is documented in wp-includes/blocks.php */ $inner_block->parsed_block = apply_filters( 'render_block_data', $inner_block->parsed_block, $source_block, $parent_block ); /** This filter is documented in wp-includes/blocks.php */ $inner_block->context = apply_filters( 'render_block_context', $inner_block->context, $inner_block->parsed_block, $parent_block ); $block_content .= $inner_block->render(); } ++$index; } } } if ( $is_dynamic ) { $global_post = $post; $parent = WP_Block_Supports::$block_to_render; WP_Block_Supports::$block_to_render = $this->parsed_block; $block_content = (string) call_user_func( $this->block_type->render_callback, $this->attributes, $block_content, $this ); WP_Block_Supports::$block_to_render = $parent; $post = $global_post; } if ( ( ! empty( $this->block_type->script_handles ) ) ) { foreach ( $this->block_type->script_handles as $script_handle ) { wp_enqueue_script( $script_handle ); } } if ( ! empty( $this->block_type->view_script_handles ) ) { foreach ( $this->block_type->view_script_handles as $view_script_handle ) { wp_enqueue_script( $view_script_handle ); } } if ( ( ! empty( $this->block_type->style_handles ) ) ) { foreach ( $this->block_type->style_handles as $style_handle ) { wp_enqueue_style( $style_handle ); } } /** * Filters the content of a single block. * * @since 5.0.0 * @since 5.9.0 The `$instance` parameter was added. * * @param string $block_content The block content. * @param array $block The full block, including name and attributes. * @param WP_Block $instance The block instance. */ $block_content = apply_filters( 'render_block', $block_content, $this->parsed_block, $this ); /** * Filters the content of a single block. * * The dynamic portion of the hook name, `$name`, refers to * the block name, e.g. "core/paragraph". * * @since 5.7.0 * @since 5.9.0 The `$instance` parameter was added. * * @param string $block_content The block content. * @param array $block The full block, including name and attributes. * @param WP_Block $instance The block instance. */ $block_content = apply_filters( "render_block_{$this->name}", $block_content, $this->parsed_block, $this ); return $block_content; } }
[+]
..
[-] class-wp-http-proxy.php
[open]
[-] template.php
[open]
[+]
fonts
[-] vars.php
[open]
[-] l10n.php
[open]
[-] load.php
[open]
[-] class-wp-block-pattern-categories-registry.php
[open]
[-] class-wp-network.php
[open]
[-] capabilities.php
[open]
[-] class-wp-image-editor-imagick.php
[open]
[+]
sodium_compat
[-] class-wp-post.php
[open]
[+]
theme-compat
[-] block-editor.php
[open]
[-] class-wp-image-editor-gd.php
[open]
[-] template-canvas.php
[open]
[-] class-smtp.php
[open]
[-] class-wp-block-styles-registry.php
[open]
[-] class-wp-http-requests-response.php
[open]
[-] class-wp-widget-factory.php
[open]
[-] class-wp-http.php
[open]
[-] class-wp-theme-json.php
[open]
[-] feed-rdf.php
[open]
[-] class-wp-tax-query.php
[open]
[-] class-wp-role.php
[open]
[-] block-template-utils.php
[open]
[-] global-styles-and-settings.php
[open]
[-] class-phpass.php
[open]
[-] class-wp-site-query.php
[open]
[+]
IXR
[-] class-walker-comment.php
[open]
[-] class-wp-http-encoding.php
[open]
[-] class-wp-session-tokens.php
[open]
[-] sitemaps.php
[open]
[-] admin-bar.php
[open]
[-] class-wp-xmlrpc-server.php
[open]
[-] class-wp.php
[open]
[-] theme.php
[open]
[-] class-wp-post-type.php
[open]
[-] atomlib.php
[open]
[-] class-wp-theme-json-schema.php
[open]
[+]
sitemaps
[-] class.wp-dependencies.php
[open]
[-] rss.php
[open]
[-] registration.php
[open]
[-] taxonomy.php
[open]
[+]
style-engine
[-] shortcodes.php
[open]
[-] class-wp-http-ixr-client.php
[open]
[-] wp-diff.php
[open]
[-] class-wp-list-util.php
[open]
[-] class-walker-page-dropdown.php
[open]
[-] query.php
[open]
[-] session.php
[open]
[-] error-protection.php
[open]
[-] widgets.php
[open]
[-] class-wp-block-patterns-registry.php
[open]
[-] class-wp-http-cookie.php
[open]
[-] class-wp-duotone.php
[open]
[-] class-pop3.php
[open]
[-] class-wp-block-parser-block.php
[open]
[-] class-wp-date-query.php
[open]
[-] ms-blogs.php
[open]
[-] theme.json
[open]
[-] class-wp-recovery-mode-cookie-service.php
[open]
[-] compat.php
[open]
[-] class-wp-term.php
[open]
[-] embed.php
[open]
[-] class-wp-feed-cache.php
[open]
[-] post.php
[open]
[-] class.wp-scripts.php
[open]
[-] class-wp-text-diff-renderer-inline.php
[open]
[-] deprecated.php
[open]
[-] class-wp-image-editor.php
[open]
[-] default-filters.php
[open]
[-] class-wp-oembed-controller.php
[open]
[-] feed-rss2-comments.php
[open]
[-] ms-default-constants.php
[open]
[-] class-json.php
[open]
[-] post-formats.php
[open]
[-] category.php
[open]
[-] general-template.php
[open]
[-] revision.php
[open]
[-] pluggable.php
[open]
[+]
assets
[-] class-wp-meta-query.php
[open]
[-] class-wp-network-query.php
[open]
[+]
blocks
[-] registration-functions.php
[open]
[-] class-wp-locale-switcher.php
[open]
[-] post-thumbnail-template.php
[open]
[-] post-template.php
[open]
[-] ms-network.php
[open]
[-] http.php
[open]
[-] fonts.php
[open]
[-] class-walker-nav-menu.php
[open]
[-] ms-load.php
[open]
[-] default-widgets.php
[open]
[-] class-wp-taxonomy.php
[open]
[-] class-wp-simplepie-sanitize-kses.php
[open]
[-] class-IXR.php
[open]
[-] class-wp-term-query.php
[open]
[-] class-wp-block-type-registry.php
[open]
[-] class-wp-oembed.php
[open]
[+]
js
[-] theme-templates.php
[open]
[-] bookmark.php
[open]
[-] class-wp-widget.php
[open]
[-] plugin.php
[open]
[+]
widgets
[+]
rest-api
[-] class-wp-customize-section.php
[open]
[-] block-i18n.json
[open]
[-] feed.php
[open]
[-] class-wp-http-response.php
[open]
[-] ms-site.php
[open]
[-] class-wp-http-requests-hooks.php
[open]
[+]
Requests
[-] ms-files.php
[open]
[-] version.php
[open]
[-] class-wp-theme-json-resolver.php
[open]
[-] class-wp-block-list.php
[open]
[+]
pomo
[-] class-wp-fatal-error-handler.php
[open]
[-] functions.php
[open]
[-] class-simplepie.php
[open]
[-] class-wp-site.php
[open]
[-] ms-default-filters.php
[open]
[-] class-wp-block.php
[open]
[-] class-wp-customize-nav-menus.php
[open]
[-] template-loader.php
[open]
[-] option.php
[open]
[-] cache.php
[open]
[-] class-wp-ajax-response.php
[open]
[-] cache-compat.php
[open]
[+]
SimplePie
[-] theme-previews.php
[open]
[-] class-wp-block-supports.php
[open]
[-] pluggable-deprecated.php
[open]
[-] class-walker-category-dropdown.php
[open]
[-] rewrite.php
[open]
[-] class.wp-styles.php
[open]
[-] category-template.php
[open]
[-] class-wp-dependencies.php
[open]
[-] class-wp-recovery-mode-key-service.php
[open]
[-] meta.php
[open]
[-] blocks.php
[open]
[-] nav-menu-template.php
[open]
[-] https-detection.php
[open]
[-] class-wp-block-editor-context.php
[open]
[+]
certificates
[-] cron.php
[open]
[-] feed-atom-comments.php
[open]
[-] block-patterns.php
[open]
[-] class-wp-block-type.php
[open]
[-] class-wp-application-passwords.php
[open]
[-] class-wp-textdomain-registry.php
[open]
[-] media.php
[open]
[-] class-wp-metadata-lazyloader.php
[open]
[-] class-wp-styles.php
[open]
[-] robots-template.php
[open]
[-] feed-atom.php
[open]
[-] comment.php
[open]
[-] class-wp-http-curl.php
[open]
[-] user.php
[open]
[-] kses.php
[open]
[-] spl-autoload-compat.php
[open]
[+]
html-api
[-] class-wp-text-diff-renderer-table.php
[open]
[-] class-wp-feed-cache-transient.php
[open]
[-] class-snoopy.php
[open]
[-] class-wp-error.php
[open]
[-] locale.php
[open]
[-] class-wp-block-parser-frame.php
[open]
[-] class-wp-embed.php
[open]
[-] class-wp-comment-query.php
[open]
[-] nav-menu.php
[open]
[-] wp-db.php
[open]
[-] class-wp-recovery-mode-email-service.php
[open]
[+]
images
[-] date.php
[open]
[-] ms-settings.php
[open]
[+]
block-patterns
[-] rest-api.php
[open]
[-] class-requests.php
[open]
[-] class-wp-object-cache.php
[open]
[-] class-wp-recovery-mode-link-service.php
[open]
[-] class-wp-customize-setting.php
[open]
[-] class-wp-matchesmapregex.php
[open]
[-] class-wp-hook.php
[open]
[-] class-wp-walker.php
[open]
[-] class-walker-category.php
[open]
[-] class-wp-editor.php
[open]
[-] class-wp-recovery-mode.php
[open]
[-] class-wpdb.php
[open]
[-] class-wp-admin-bar.php
[open]
[-] class-wp-user-request.php
[open]
[-] class-wp-dependency.php
[open]
[-] class-wp-http-streams.php
[open]
[-] class-wp-customize-manager.php
[open]
[-] feed-rss2.php
[open]
[-] class-wp-navigation-fallback.php
[open]
[+]
customize
[-] class-wp-user-meta-session-tokens.php
[open]
[-] class-wp-roles.php
[open]
[-] media-template.php
[open]
[+]
ID3
[-] class-wp-theme.php
[open]
[-] class-wp-classic-to-block-menu-converter.php
[open]
[-] class-wp-scripts.php
[open]
[-] class-oembed.php
[open]
[-] class-wp-customize-panel.php
[open]
[-] functions.wp-scripts.php
[open]
[-] rss-functions.php
[open]
[-] class-wp-paused-extensions-storage.php
[open]
[-] class-feed.php
[open]
[-] class-wp-comment.php
[open]
[-] class-wp-user-query.php
[open]
[-] class-wp-user.php
[open]
[-] class-wp-customize-control.php
[open]
[-] functions.wp-styles.php
[open]
[-] class-phpmailer.php
[open]
[-] script-loader.php
[open]
[-] class-wp-block-template.php
[open]
[-] author-template.php
[open]
[-] ms-deprecated.php
[open]
[+]
css
[-] canonical.php
[open]
[-] class-wp-rewrite.php
[open]
[-] class-wp-block-parser.php
[open]
[-] class-wp-query.php
[open]
[-] class-walker-page.php
[open]
[-] bookmark-template.php
[open]
[-] class-wp-customize-widgets.php
[open]
[-] class-wp-locale.php
[open]
[+]
PHPMailer
[-] block-template.php
[open]
[-] theme-i18n.json
[open]
[-] embed-template.php
[open]
[-] feed-rss.php
[open]
[-] formatting.php
[open]
[-] update.php
[open]
[-] class-wp-simplepie-file.php
[open]
[-] link-template.php
[open]
[-] https-migration.php
[open]
[+]
php-compat
[-] comment-template.php
[open]
[-] style-engine.php
[open]
[+]
Text
[+]
block-supports
[-] class-http.php
[open]
[-] class-wp-theme-json-data.php
[open]
[-] ms-functions.php
[open]
[-] default-constants.php
[open]