PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.3-a.1
Jetpack – WP Security, Backup, Speed, & Growth v16.3-a.1
16.3-a.3 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 All 504 releases
← All changes | extensions/blocks/related-posts/related-posts.php +18 -19 13.9.216.3-a.1 View file →
@@ -12,8 +12,12 @@
12 12 use Automattic\Jetpack\Status;
13 13 use Automattic\Jetpack\Status\Host;
14 14 use WP_Block;
15 15
16 +if ( ! defined( 'ABSPATH' ) ) {
17 + exit( 0 );
18 +}
19 +
16 20 /**
17 21 * Registers the block for use in Gutenberg
18 22 * This is done via an action so that we can disable
19 23 * registration if we need to.
@@ -18,8 +22,17 @@
18 22 * This is done via an action so that we can disable
19 23 * registration if we need to.
20 24 */
21 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 +
22 35 if (
23 36 ( new Host() )->is_wpcom_simple()
24 37 || ( \Jetpack::is_connection_ready() && ! ( new Status() )->is_offline_mode() )
25 38 ) {
@@ -35,8 +48,11 @@
35 48
36 49 /**
37 50 * Related Posts block render callback.
38 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 + *
39 55 * @param array $attributes Array containing the Button block attributes.
40 56 * @param string $content The block content.
41 57 * @param WP_Block $block The block object.
42 58 *
@@ -42,24 +58,7 @@
42 58 *
43 59 * @return string
44 60 */
45 61 function render_block( $attributes, $content, $block ) {
46 - // If the Related Posts module is not active, don't render the block.
47 - if (
48 - ! ( new Host() )->is_wpcom_simple()
49 - && ! ( new Modules() )->is_active( 'related-posts' )
50 - ) {
51 - return '';
52 - }
53 -
54 - // If the Related Posts option is turned off, don't render the block.
55 - $options = \Jetpack_Options::get_option( 'relatedposts', array() );
56 - if ( empty( $options['enabled'] ) || ! $options['enabled'] ) {
57 - return '';
58 - }
59 -
60 - if ( ! class_exists( 'Jetpack_RelatedPosts' ) ) {
61 - require_once JETPACK__PLUGIN_DIR . 'modules/related-posts/jetpack-related-posts.php';
62 - }
63 -
64 - return \Jetpack_RelatedPosts::init()->render_block( $attributes, $content, $block );
62 + require_once __DIR__ . '/render.php';
63 + return render_block_implementation( $attributes, $content, $block );
65 64 }