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
jetpack / extensions / blocks / premium-content / buttons / buttons.php

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

47 lines 994 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Premium Content Buttons Child Block.
4 *
5 * @package automattic/jetpack
6 */
7
8 namespace Automattic\Jetpack\Extensions\Premium_Content;
9
10 use Automattic\Jetpack\Blocks;
11 use Jetpack_Gutenberg;
12
13 if ( ! defined( 'ABSPATH' ) ) {
14 exit( 0 );
15 }
16
17 const BUTTONS_NAME = 'premium-content/buttons';
18
19 /**
20 * Registers the block for use in Gutenberg
21 * This is done via an action so that we can disable
22 * registration if we need to.
23 */
24 function register_buttons_block() {
25 Blocks::jetpack_register_block(
26 BUTTONS_NAME,
27 array(
28 'render_callback' => __NAMESPACE__ . '\render_buttons_block',
29 )
30 );
31 }
32 add_action( 'init', __NAMESPACE__ . '\register_buttons_block' );
33
34 /**
35 * 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_buttons_block( $attributes, $content ) {
43 Jetpack_Gutenberg::load_styles_as_required( BUTTONS_NAME );
44
45 return $content;
46 }
47