PluginProbe
Jetpack – WP Security, Backup, Speed, & Growth / 16.3-a.1
Jetpack – WP Security, Backup, Speed, & Growth v16.3-a.1
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 14.1.1 All 503 releases
jetpack / extensions / blocks / calendly / calendly.php

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

49 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Calendly Block.
4 *
5 * @since 8.2.0
6 *
7 * @package automattic/jetpack
8 */
9
10 namespace Automattic\Jetpack\Extensions\Calendly;
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 * Calendly 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 $attr Array containing the Calendly block attributes.
41 * @param string $content String containing the Calendly block content.
42 *
43 * @return string
44 */
45 function load_assets( $attr, $content ) {
46 require_once __DIR__ . '/render.php';
47 return render( $attr, $content );
48 }
49