| 1 |
<?php |
| 2 |
/** |
| 3 |
* Contact Form Block. |
| 4 |
* |
| 5 |
* @package automattic/jetpack |
| 6 |
*/ |
| 7 |
|
| 8 |
namespace Automattic\Jetpack\Extensions\Contact_Form; |
| 9 |
|
| 10 |
add_action( 'init', array( Contact_Form_Block::class, 'register_block' ), 9 ); |
| 11 |
|
| 12 |
add_action( 'enqueue_block_editor_assets', array( Contact_Form_Block::class, 'load_editor_scripts' ), 9 ); |
| 13 |
|