| 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 |
|