PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.3-a.1
Jetpack – WP Security, Backup, Speed, & Growth v16.3-a.1
16.3-a.1 16.2 16.2-beta 12.0.3 12.1.3 12.2.3 12.3.2 12.4.2 12.5.2 12.6.4 12.7.3 12.8.3 12.9.5 13.0.2 13.1.5 13.2.4 13.3.3 13.4.5 13.5.2 13.6.2 13.7.2 13.8.3 13.9.2 14.0.1 14.1.1 All 503 releases
jetpack / extensions / blocks / related-posts / related-posts.php

related-posts.php in Jetpack – WP Security, Backup, Speed, & Growth 16.3-a.1, at extensions/blocks/related-posts/related-posts.php

65 lines 1.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Related Posts Block.
4 *
5 * @package automattic/jetpack
6 */
7
8 namespace Automattic\Jetpack\Extensions\RelatedPosts;
9
10 use Automattic\Jetpack\Blocks;
11 use Automattic\Jetpack\Modules;
12 use Automattic\Jetpack\Status;
13 use Automattic\Jetpack\Status\Host;
14 use WP_Block;
15
16 if ( ! defined( 'ABSPATH' ) ) {
17 exit( 0 );
18 }
19
20 /**
21 * Registers the block for use in Gutenberg
22 * This is done via an action so that we can disable
23 * registration if we need to.
24 */
25 function register_block() {
26 /*
27 * The block is available even when the module is not active,
28 * so we can display a nudge to activate the module instead of the block.
29 * However, since non-admins cannot activate modules, we do not display the empty block for them.
30 */
31 if ( ! ( new Modules() )->is_active( 'related-posts' ) && ! current_user_can( 'jetpack_activate_modules' ) ) {
32 return;
33 }
34
35 if (
36 ( new Host() )->is_wpcom_simple()
37 || ( \Jetpack::is_connection_ready() && ! ( new Status() )->is_offline_mode() )
38 ) {
39 Blocks::jetpack_register_block(
40 __DIR__,
41 array(
42 'render_callback' => __NAMESPACE__ . '\render_block',
43 )
44 );
45 }
46 }
47 add_action( 'init', __NAMESPACE__ . '\register_block', 9 );
48
49 /**
50 * Related Posts block render callback.
51 *
52 * The render implementation lives in render.php and is only loaded when the
53 * block is actually rendered, keeping it out of the eager front-end path.
54 *
55 * @param array $attributes Array containing the Button block attributes.
56 * @param string $content The block content.
57 * @param WP_Block $block The block object.
58 *
59 * @return string
60 */
61 function render_block( $attributes, $content, $block ) {
62 require_once __DIR__ . '/render.php';
63 return render_block_implementation( $attributes, $content, $block );
64 }
65