| 1 |
<?php |
| 2 |
/** |
| 3 |
* OpenTable Block. |
| 4 |
* |
| 5 |
* @since 8.2 |
| 6 |
* |
| 7 |
* @package automattic/jetpack |
| 8 |
*/ |
| 9 |
|
| 10 |
namespace Automattic\Jetpack\Extensions\OpenTable; |
| 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 |
Blocks::jetpack_register_block( |
| 25 |
__DIR__, |
| 26 |
array( |
| 27 |
'render_callback' => __NAMESPACE__ . '\load_assets', |
| 28 |
'plan_check' => true, |
| 29 |
) |
| 30 |
); |
| 31 |
} |
| 32 |
add_action( 'init', __NAMESPACE__ . '\register_block' ); |
| 33 |
|
| 34 |
/** |
| 35 |
* OpenTable block registration/dependency declaration. |
| 36 |
* |
| 37 |
* The render implementation lives in render.php and is only loaded when the |
| 38 |
* block is actually rendered, keeping it out of the eager front-end path. |
| 39 |
* |
| 40 |
* @param array $attributes Array containing the OpenTable block attributes. |
| 41 |
* |
| 42 |
* @return string |
| 43 |
*/ |
| 44 |
function load_assets( $attributes ) { |
| 45 |
require_once __DIR__ . '/render.php'; |
| 46 |
return render( $attributes ); |
| 47 |
} |
| 48 |
|