| 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 |
|