Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function run(): void |
||
10 | { |
||
11 | $this->hook(Controller::class, [ |
||
12 | ['enqueueBlockAssets', 'wp_enqueue_scripts'], |
||
13 | ['enqueueBlockEditorAssets', 'enqueue_block_editor_assets'], |
||
14 | ['filterAllowedBlockTypes', 'allowed_block_types_all', 10, 2], |
||
15 | ['filterBlockCategories', 'block_categories_all'], |
||
16 | ['filterUseBlockEditor', 'use_block_editor_for_post_type', 10, 2], |
||
17 | ['registerBlocks', 'init'], |
||
18 | ['removeLegacyWidgets', 'widget_types_to_hide_from_legacy_widget_block'], |
||
19 | ]); |
||
22 |