Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
66.67% covered (warning)
66.67%
6 / 9
100.00% covered (success)
100.00%
2 / 2
CRAP
n/a
0 / 0
Automattic\Jetpack\Extensions\Story\register_block
100.00% covered (success)
100.00%
4 / 4
100.00% covered (success)
100.00%
1 / 1
1
Automattic\Jetpack\Extensions\Story\render_block
100.00% covered (success)
100.00%
2 / 2
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2/**
3 * Story Block.
4 *
5 * @since 8.6.1
6 *
7 * @package automattic/jetpack
8 */
9
10namespace Automattic\Jetpack\Extensions\Story;
11
12use Automattic\Jetpack\Blocks;
13
14if ( ! 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 */
23function register_block() {
24    Blocks::jetpack_register_block(
25        __DIR__,
26        array( 'render_callback' => __NAMESPACE__ . '\render_block' )
27    );
28}
29add_action( 'init', __NAMESPACE__ . '\register_block' );
30
31/**
32 * Render story block
33 *
34 * The render implementation lives in render.php and is only loaded when the
35 * block is actually rendered, keeping it out of the eager front-end path.
36 *
37 * @param array $attributes  - Block attributes.
38 *
39 * @return string
40 */
41function render_block( $attributes ) {
42    require_once __DIR__ . '/render.php';
43    return render( $attributes );
44}