# better-block-editor/trunk/Modules/EditorInterface/Module.php

Better Block Editor (BBE), version trunk. 21 lines.

- Page: https://pluginprobe.com/plugins/better-block-editor/trunk/code/Modules/EditorInterface/Module.php
- Raw: https://pluginprobe.com/plugins/better-block-editor/trunk/raw/Modules/EditorInterface/Module.php
- Modified: 2025-10-29T13:47:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/better-block-editor/trunk/code/Modules/EditorInterface/Module.php#L10-L20`.

```php
<?php
/**
 * Apply some css to editor blocks
 *
 * @package BetterBlockEditor
 */

namespace BetterBlockEditor\Modules\EditorInterface;

use BetterBlockEditor\Base\ModuleBase;

defined( 'ABSPATH' ) || exit;

class Module extends ModuleBase {

	const MODULE_IDENTIFIER = 'core-editor-interface-plugin';
	const ASSETS_BUILD_PATH = 'editor/plugins/interface/';

	const IS_CORE_MODULE = true;
}

```
