Completed
Push — add/stats-package ( c3aabb...99d182 )
by
unknown
148:14 queued 140:08
created

extensions/blocks/subscriptions/subscriptions.php (1 issue)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
/**
3
 * Subscriptions Block.
4
 *
5
 * @package Jetpack
6
 */
7
8
namespace Automattic\Jetpack\Extensions\Subscriptions;
9
10
use Jetpack;
11
use Jetpack_Gutenberg;
12
13
const FEATURE_NAME = 'subscriptions';
14
const BLOCK_NAME   = 'jetpack/' . FEATURE_NAME;
15
16
/**
17
 * Registers the block for use in Gutenberg
18
 * This is done via an action so that we can disable
19
 * registration if we need to.
20
 */
21 View Code Duplication
function register_block() {
0 ignored issues
show
This function seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
22
	if (
23
		( defined( 'IS_WPCOM' ) && IS_WPCOM )
24
		|| ( Jetpack::is_active() && Jetpack::is_module_active( 'subscriptions' ) )
25
	) {
26
		jetpack_register_block(
27
			BLOCK_NAME,
28
			array( 'render_callback' => __NAMESPACE__ . '\render_block' )
29
		);
30
	}
31
}
32
add_action( 'init', __NAMESPACE__ . '\register_block' );
33
34
/**
35
 * Subscriptions block render callback.
36
 *
37
 * @param array  $attributes Array containing the block attributes.
38
 * @param string $content    String containing the block content.
39
 *
40
 * @return string
41
 */
42
function render_block( $attributes, $content ) {
43
	Jetpack_Gutenberg::load_styles_as_required( FEATURE_NAME );
44
45
	return $content;
46
}
47