-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
18 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,22 @@ | ||
<?php | ||
/** | ||
* Placeholder class to replace the default `_WP_Editors`. | ||
* Used to disable loading of TinyMCE assets. | ||
* Contains the placeholder class to replace the default `_WP_Editors`. | ||
* | ||
* @package gutenberg | ||
* @since 6.3.0 | ||
*/ | ||
|
||
// phpcs:disable PEAR.NamingConventions.ValidClassName.StartWithCapital | ||
|
||
/** | ||
* Placeholder class. | ||
* Used to disable loading of TinyMCE assets. | ||
* | ||
* @access public | ||
*/ | ||
final class _WP_Editors { | ||
/** | ||
* Necessary to ensure no additional TinyMcE assets are enqueued. | ||
*/ | ||
public static function enqueue_default_editor() {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters