PluginProbe
Better Block Editor (BBE) / trunk
Better Block Editor (BBE) vtrunk
1.8.1 1.8.0 1.7.0 1.6.0 1.5.1 1.5.0 trunk 1.0.0 1.0.1 1.0.1.1 1.0.1.2 1.1.0 1.2.0 1.2.1 1.2.2 1.3.0 1.4.0 1.4.1 1.4.2
better-block-editor / Modules / EditorInterface / Module.php

Module.php in Better Block Editor (BBE) trunk, at Modules/EditorInterface/Module.php

21 lines 391 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Apply some css to editor blocks
4 *
5 * @package BetterBlockEditor
6 */
7
8 namespace BetterBlockEditor\Modules\EditorInterface;
9
10 use BetterBlockEditor\Base\ModuleBase;
11
12 defined( 'ABSPATH' ) || exit;
13
14 class Module extends ModuleBase {
15
16 const MODULE_IDENTIFIER = 'core-editor-interface-plugin';
17 const ASSETS_BUILD_PATH = 'editor/plugins/interface/';
18
19 const IS_CORE_MODULE = true;
20 }
21