| 1 |
<?php |
| 2 |
/** |
| 3 |
* Markdown Block. |
| 4 |
* |
| 5 |
* @since 6.8.0 |
| 6 |
* |
| 7 |
* @package automattic/jetpack |
| 8 |
*/ |
| 9 |
|
| 10 |
namespace Automattic\Jetpack\Extensions\Markdown; |
| 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( __DIR__ ); |
| 25 |
} |
| 26 |
add_action( 'init', __NAMESPACE__ . '\register_block' ); |
| 27 |
|