1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin */
/** * Class to load assets required for structured data blocks. */ class WPSEO_Structured_Data_Blocks implements WPSEO_WordPress_Integration {
/** * @var WPSEO_Admin_Asset_Manager */ protected $asset_manager;
/** * WPSEO_Structured_Data_Blocks constructor. */ public function __construct() { $this->asset_manager = new WPSEO_Admin_Asset_Manager(); }
/** * Registers hooks for Structured Data Blocks with WordPress. */ public function register_hooks() { add_action( 'enqueue_block_editor_assets', array( $this, 'enqueue_block_editor_assets' ) ); add_filter( 'block_categories', array( $this, 'add_block_category' ) ); }
/** * Enqueue Gutenberg block assets for backend editor. */ public function enqueue_block_editor_assets() { $this->asset_manager->enqueue_script( 'structured-data-blocks' ); $this->asset_manager->enqueue_style( 'structured-data-blocks' ); }
/** * Adds the structured data blocks category to the Gutenberg categories. * * @param array $categories The current categories. * * @return array The updated categories. */ public function add_block_category( $categories ) { $categories[] = array( 'slug' => 'yoast-structured-data-blocks', 'title' => sprintf( /* translators: %1$s expands to Yoast. */ __( '%1$s Structured Data Blocks', 'wordpress-seo' ), 'Yoast' ), );
return $categories; } }
|