PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 8.6
Jetpack – WP Security, Backup, Speed, & Growth v8.6
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 14.2.2 14.3.1 All 501 releases
jetpack / extensions / blocks / subscriptions / subscriptions.php

subscriptions.php in Jetpack – WP Security, Backup, Speed, & Growth 8.6, at extensions/blocks/subscriptions/subscriptions.php

47 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Subscriptions Block.
4 *
5 * @package Jetpack
6 */
7
8 namespace Automattic\Jetpack\Extensions\Subscriptions;
9
10 use Jetpack;
11 use Jetpack_Gutenberg;
12
13 const FEATURE_NAME = 'subscriptions';
14 const BLOCK_NAME = 'jetpack/' . FEATURE_NAME;
15
16 /**
17 * Registers the block for use in Gutenberg
18 * This is done via an action so that we can disable
19 * registration if we need to.
20 */
21 function register_block() {
22 if (
23 ( Jetpack::is_active() && Jetpack::is_module_active( 'subscriptions' ) )
24 || ( defined( 'IS_WPCOM' ) && IS_WPCOM )
25 ) {
26 jetpack_register_block(
27 BLOCK_NAME,
28 array( 'render_callback' => __NAMESPACE__ . '\render_block' )
29 );
30 }
31 }
32 add_action( 'init', __NAMESPACE__ . '\register_block' );
33
34 /**
35 * Subscriptions block render callback.
36 *
37 * @param array $attributes Array containing the block attributes.
38 * @param string $content String containing the block content.
39 *
40 * @return string
41 */
42 function render_block( $attributes, $content ) {
43 Jetpack_Gutenberg::load_styles_as_required( FEATURE_NAME );
44
45 return $content;
46 }
47