related-posts.php
83 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Related Posts Block. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | namespace Automattic\Jetpack\Extensions\RelatedPosts; |
| 9 | |
| 10 | use Automattic\Jetpack\Blocks; |
| 11 | use Automattic\Jetpack\Modules; |
| 12 | use Automattic\Jetpack\Status; |
| 13 | use Automattic\Jetpack\Status\Host; |
| 14 | |
| 15 | const FEATURE_NAME = 'related-posts'; |
| 16 | const BLOCK_NAME = 'jetpack/' . FEATURE_NAME; |
| 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 | if ( |
| 25 | ( new Host() )->is_wpcom_simple() |
| 26 | || ( \Jetpack::is_connection_ready() && ! ( new Status() )->is_offline_mode() ) |
| 27 | ) { |
| 28 | Blocks::jetpack_register_block( |
| 29 | BLOCK_NAME, |
| 30 | array( |
| 31 | 'render_callback' => __NAMESPACE__ . '\render_block', |
| 32 | 'supports' => array( |
| 33 | 'color' => array( |
| 34 | 'gradients' => true, |
| 35 | 'link' => true, |
| 36 | ), |
| 37 | 'spacing' => array( |
| 38 | 'margin' => true, |
| 39 | 'padding' => true, |
| 40 | ), |
| 41 | 'typography' => array( |
| 42 | '__experimentalFontFamily' => true, |
| 43 | 'fontSize' => true, |
| 44 | 'lineHeight' => true, |
| 45 | ), |
| 46 | 'align' => array( 'wide', 'full' ), |
| 47 | ), |
| 48 | ) |
| 49 | ); |
| 50 | } |
| 51 | } |
| 52 | add_action( 'init', __NAMESPACE__ . '\register_block', 9 ); |
| 53 | |
| 54 | /** |
| 55 | * Related Posts block render callback. |
| 56 | * |
| 57 | * @param array $attributes Array containing the Button block attributes. |
| 58 | * @param string $content The Button block content. |
| 59 | * |
| 60 | * @return string |
| 61 | */ |
| 62 | function render_block( $attributes, $content ) { |
| 63 | // If the Related Posts module is not active, don't render the block. |
| 64 | if ( |
| 65 | ! ( new Host() )->is_wpcom_simple() |
| 66 | && ! ( new Modules() )->is_active( FEATURE_NAME ) |
| 67 | ) { |
| 68 | return ''; |
| 69 | } |
| 70 | |
| 71 | // If the Related Posts option is turned off, don't render the block. |
| 72 | $options = \Jetpack_Options::get_option( 'relatedposts', array() ); |
| 73 | if ( empty( $options['enabled'] ) || ! $options['enabled'] ) { |
| 74 | return ''; |
| 75 | } |
| 76 | |
| 77 | if ( ! class_exists( 'Jetpack_RelatedPosts' ) ) { |
| 78 | require_once JETPACK__PLUGIN_DIR . 'modules/related-posts/jetpack-related-posts.php'; |
| 79 | } |
| 80 | |
| 81 | return \Jetpack_RelatedPosts::init()->render_block( $attributes, $content ); |
| 82 | } |
| 83 |