PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.2
Jetpack – WP Security, Backup, Speed, & Growth v16.2
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 14.2.2 All 502 releases
jetpack / extensions / blocks / like / like.php

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

56 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Like Block.
4 *
5 * @since 12.9
6 *
7 * @package automattic/jetpack
8 */
9
10 namespace Automattic\Jetpack\Extensions\Like;
11
12 use Automattic\Jetpack\Blocks;
13
14 if ( ! defined( 'ABSPATH' ) ) {
15 exit( 0 );
16 }
17
18 /**
19 * Registers the block for use in Gutenberg
20 * This is done via an action so that we can disable
21 * registration if we need to.
22 */
23 function register_block() {
24 $is_wpcom = defined( 'IS_WPCOM' ) && IS_WPCOM;
25 $is_connected = \Jetpack::is_connection_ready();
26
27 if ( $is_wpcom || $is_connected ) {
28 Blocks::jetpack_register_block(
29 __DIR__,
30 array(
31 'api_version' => 3,
32 'render_callback' => __NAMESPACE__ . '\render_block',
33 'description' => $is_wpcom ? __( 'Give your readers the ability to show appreciation for your posts and easily share them with others.', 'jetpack' ) : __( 'Give your readers the ability to show appreciation for your posts.', 'jetpack' ),
34 )
35 );
36 }
37 }
38 add_action( 'init', __NAMESPACE__ . '\register_block' );
39
40 /**
41 * Like block render function.
42 *
43 * The render implementation lives in render.php and is only loaded when the
44 * block is actually rendered, keeping it out of the eager front-end path.
45 *
46 * @param array $attr Array containing the Like block attributes.
47 * @param string $content String containing the Like block content.
48 * @param object $block Object containing the Like block data.
49 *
50 * @return string
51 */
52 function render_block( $attr, $content, $block ) {
53 require_once __DIR__ . '/render.php';
54 return render_block_implementation( $attr, $content, $block );
55 }
56