Conditions | 5 |
Paths | 3 |
Total Lines | 17 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
19 | */ |
||
20 | function register_block() { |
||
21 | jetpack_register_block( |
||
22 | BLOCK_NAME, |
||
23 | array( |
||
24 | 'render_callback' => 'Jetpack\Google_Calendar_Block\load_assets', |
||
25 | ) |
||
26 | ); |
||
27 | } |
||
28 | |||
29 | add_action( 'init', 'Jetpack\Google_Calendar_Block\register_block' ); |
||
30 | |||
31 | /** |
||
32 | * Google Calendar block registration/dependency declaration. |
||
33 | * |
||
34 | * @param array $attr Array containing the Google Calendar block attributes. |
||
35 | * @return string |
||
36 | */ |
||
65 |