Submit
Path:
~
/
home
/
caidadmin
/
dev.defense.sca-caid.org
/
wp-includes
/
blocks
/
File Content:
comments.php
<?php /** * Server-side rendering of the `core/comments` block. * * @package WordPress */ /** * Renders the `core/comments` block on the server. * * This render callback is mainly for rendering a dynamic, legacy version of * this block (the old `core/post-comments`). It uses the `comments_template()` * function to generate the output, in the same way as classic PHP themes. * * As this callback will always run during SSR, first we need to check whether * the block is in legacy mode. If not, the HTML generated in the editor is * returned instead. * * @param array $attributes Block attributes. * @param string $content Block default content. * @param WP_Block $block Block instance. * @return string Returns the filtered post comments for the current post wrapped inside "p" tags. */ function render_block_core_comments( $attributes, $content, $block ) { global $post; $post_id = $block->context['postId']; if ( ! isset( $post_id ) ) { return ''; } $comment_args = array( 'post_id' => $post_id, 'count' => true, 'status' => 'approve', ); // Return early if there are no comments and comments are closed. if ( ! comments_open( $post_id ) && get_comments( $comment_args ) === 0 ) { return ''; } // If this isn't the legacy block, we need to render the static version of this block. $is_legacy = 'core/post-comments' === $block->name || ! empty( $attributes['legacy'] ); if ( ! $is_legacy ) { return $block->render( array( 'dynamic' => false ) ); } $post_before = $post; $post = get_post( $post_id ); setup_postdata( $post ); ob_start(); /* * There's a deprecation warning generated by WP Core. * Ideally this deprecation is removed from Core. * In the meantime, this removes it from the output. */ add_filter( 'deprecated_file_trigger_error', '__return_false' ); comments_template(); remove_filter( 'deprecated_file_trigger_error', '__return_false' ); $output = ob_get_clean(); $post = $post_before; $classnames = array(); // Adds the old class name for styles' backwards compatibility. if ( isset( $attributes['legacy'] ) ) { $classnames[] = 'wp-block-post-comments'; } if ( isset( $attributes['textAlign'] ) ) { $classnames[] = 'has-text-align-' . $attributes['textAlign']; } $wrapper_attributes = get_block_wrapper_attributes( array( 'class' => implode( ' ', $classnames ) ) ); /* * Enqueues scripts and styles required only for the legacy version. That is * why they are not defined in `block.json`. */ wp_enqueue_script( 'comment-reply' ); enqueue_legacy_post_comments_block_styles( $block->name ); return sprintf( '<div %1$s>%2$s</div>', $wrapper_attributes, $output ); } /** * Registers the `core/comments` block on the server. */ function register_block_core_comments() { register_block_type_from_metadata( __DIR__ . '/comments', array( 'render_callback' => 'render_block_core_comments', 'skip_inner_blocks' => true, ) ); } add_action( 'init', 'register_block_core_comments' ); /** * Use the button block classes for the form-submit button. * * @param array $fields The default comment form arguments. * * @return array Returns the modified fields. */ function comments_block_form_defaults( $fields ) { if ( wp_is_block_theme() ) { $fields['submit_button'] = '<input name="%1$s" type="submit" id="%2$s" class="%3$s wp-block-button__link ' . wp_theme_get_element_class_name( 'button' ) . '" value="%4$s" />'; $fields['submit_field'] = '<p class="form-submit wp-block-button">%1$s %2$s</p>'; } return $fields; } add_filter( 'comment_form_defaults', 'comments_block_form_defaults' ); /** * Enqueues styles from the legacy `core/post-comments` block. These styles are * required only by the block's fallback. * * @param string $block_name Name of the new block type. */ function enqueue_legacy_post_comments_block_styles( $block_name ) { static $are_styles_enqueued = false; if ( ! $are_styles_enqueued ) { $handles = array( 'wp-block-post-comments', 'wp-block-buttons', 'wp-block-button', ); foreach ( $handles as $handle ) { wp_enqueue_block_style( $block_name, array( 'handle' => $handle ) ); } $are_styles_enqueued = true; } } /** * Ensures backwards compatibility for any users running the Gutenberg plugin * who have used Post Comments before it was merged into Comments Query Loop. * * The same approach was followed when core/query-loop was renamed to * core/post-template. * * @see https://github.com/WordPress/gutenberg/pull/41807 * @see https://github.com/WordPress/gutenberg/pull/32514 */ function register_legacy_post_comments_block() { $registry = WP_Block_Type_Registry::get_instance(); /* * Remove the old `post-comments` block if it was already registered, as it * is about to be replaced by the type defined below. */ if ( $registry->is_registered( 'core/post-comments' ) ) { unregister_block_type( 'core/post-comments' ); } // Recreate the legacy block metadata. $metadata = array( 'name' => 'core/post-comments', 'category' => 'theme', 'attributes' => array( 'textAlign' => array( 'type' => 'string', ), ), 'uses_context' => array( 'postId', 'postType', ), 'supports' => array( 'html' => false, 'align' => array( 'wide', 'full' ), 'typography' => array( 'fontSize' => true, 'lineHeight' => true, '__experimentalFontStyle' => true, '__experimentalFontWeight' => true, '__experimentalLetterSpacing' => true, '__experimentalTextTransform' => true, '__experimentalDefaultControls' => array( 'fontSize' => true, ), ), 'color' => array( 'gradients' => true, 'link' => true, '__experimentalDefaultControls' => array( 'background' => true, 'text' => true, ), ), 'inserter' => false, ), 'style' => array( 'wp-block-post-comments', 'wp-block-buttons', 'wp-block-button', ), 'editorStyle' => 'wp-block-post-comments-editor', 'render_callback' => 'render_block_core_comments', 'skip_inner_blocks' => true, ); /* * Filters the metadata object, the same way it's done inside * `register_block_type_from_metadata()`. This applies some default filters, * like `_wp_multiple_block_styles`, which is required in this case because * the block has multiple styles. */ $metadata = apply_filters( 'block_type_metadata', $metadata ); register_block_type( 'core/post-comments', $metadata ); } add_action( 'init', 'register_legacy_post_comments_block', 21 );
Edit
Rename
Chmod
Delete
FILE
FOLDER
Name
Size
Permission
Action
archives
---
0777
audio
---
0777
avatar
---
0777
block
---
0777
button
---
0777
buttons
---
0777
calendar
---
0777
categories
---
0777
classic
---
0777
code
---
0777
column
---
0777
columns
---
0777
comment-author-name
---
0777
comment-content
---
0777
comment-date
---
0777
comment-edit-link
---
0777
comment-reply-link
---
0777
comment-template
---
0777
comments
---
0777
comments-pagination
---
0777
comments-pagination-next
---
0777
comments-pagination-numbers
---
0777
comments-pagination-previous
---
0777
comments-title
---
0777
cover
---
0777
embed
---
0777
file
---
0777
freeform
---
0777
gallery
---
0777
group
---
0777
heading
---
0777
home-link
---
0777
html
---
0777
image
---
0777
latest-comments
---
0777
latest-posts
---
0777
legacy-widget
---
0777
list
---
0777
list-item
---
0777
loginout
---
0777
media-text
---
0777
missing
---
0777
more
---
0777
navigation
---
0777
navigation-link
---
0777
navigation-submenu
---
0777
nextpage
---
0777
page-list
---
0777
paragraph
---
0777
pattern
---
0777
post-author
---
0777
post-author-biography
---
0777
post-comments-form
---
0777
post-content
---
0755
post-date
---
0777
post-excerpt
---
0777
post-featured-image
---
0777
post-navigation-link
---
0777
post-template
---
0777
post-terms
---
0777
post-title
---
0777
preformatted
---
0777
pullquote
---
0777
query
---
0777
query-no-results
---
0777
query-pagination
---
0777
query-pagination-next
---
0777
query-pagination-numbers
---
0777
query-pagination-previous
---
0777
query-title
---
0777
quote
---
0777
read-more
---
0777
rss
---
0777
search
---
0777
separator
---
0777
shortcode
---
0777
site-logo
---
0777
site-tagline
---
0777
site-title
---
0777
social-link
---
0777
social-links
---
0777
spacer
---
0777
table
---
0777
tag-cloud
---
0777
template-part
---
0777
term-description
---
0777
text-columns
---
0777
verse
---
0777
video
---
0777
widget-group
---
0777
.htaccess
148 bytes
0444
archives.php
3688 bytes
0644
avatar.php
5419 bytes
0644
block.php
1665 bytes
0644
blocks-json.php
107584 bytes
0644
calendar.php
4668 bytes
0644
categories.php
2848 bytes
0644
comment-author-name.php
1960 bytes
0644
comment-content.php
2286 bytes
0644
comment-date.php
1504 bytes
0644
comment-edit-link.php
1540 bytes
0644
comment-reply-link.php
1902 bytes
0644
comment-template.php
3722 bytes
0644
comments-pagination-next.php
1846 bytes
0644
comments-pagination-numbers.php
1594 bytes
0644
comments-pagination-previous.php
1638 bytes
0644
comments-pagination.php
967 bytes
0644
comments-title.php
2734 bytes
0644
comments.php
6714 bytes
0644
cover.php
2497 bytes
0644
file.php
1598 bytes
0644
gallery.php
4689 bytes
0644
home-link.php
4855 bytes
0644
image.php
1294 bytes
0644
index.php
7172 bytes
0200
latest-comments.php
5002 bytes
0644
latest-posts.php
7457 bytes
0644
legacy-widget.php
3902 bytes
0644
loginout.php
1380 bytes
0644
navigation-link.php
11321 bytes
0644
navigation-submenu.php
10256 bytes
0644
navigation.php
26961 bytes
0644
page-list.php
13016 bytes
0644
pattern.php
921 bytes
0644
post-author-biography.php
1448 bytes
0644
post-author.php
2142 bytes
0644
post-comments-form.php
2611 bytes
0644
post-content.php
2395 bytes
0644
post-date.php
1881 bytes
0644
post-excerpt.php
2489 bytes
0644
post-featured-image.php
6797 bytes
0644
post-navigation-link.php
3598 bytes
0644
post-template.php
4034 bytes
0644
post-terms.php
3149 bytes
0644
post-title.php
1721 bytes
0644
query-no-results.php
1614 bytes
0644
query-pagination-next.php
2720 bytes
0644
query-pagination-numbers.php
3815 bytes
0644
query-pagination-previous.php
2166 bytes
0644
query-pagination.php
990 bytes
0644
query-title.php
2125 bytes
0644
query.php
304 bytes
0644
read-more.php
1345 bytes
0644
require-dynamic-blocks.php
3710 bytes
0644
require-static-blocks.php
536 bytes
0644
rss.php
3940 bytes
0644
search.php
20400 bytes
0644
shortcode.php
697 bytes
0644
site-logo.php
5803 bytes
0644
site-tagline.php
994 bytes
0644
site-title.php
1675 bytes
0644
social-link.php
60798 bytes
0644
tag-cloud.php
1641 bytes
0644
template-part.php
9354 bytes
0644
term-description.php
1172 bytes
0644
widget-group.php
2166 bytes
0644
N4ST4R_ID | Naxtarrr