core/modules/edit/edit.api.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/core/modules/edit/edit.api.php b/core/modules/edit/edit.api.php index 980e159..f10eec9 100644 --- a/core/modules/edit/edit.api.php +++ b/core/modules/edit/edit.api.php @@ -19,10 +19,13 @@ * @param array &$editors * An array of informations on existing in-place editors, as collected by the * annotation discovery mechanism. + * + * @see \Drupal\edit\Annotation\InPlaceEditor + * @see \Drupal\edit\Plugin\EditorManager */ function hook_edit_editor_alter(&$editors) { // Cleanly override editor.module's in-place editor plugin. - $editors['editor']['class'] = 'Drupal\\advanced_editor\\Plugin\\edit\\editor\\AdvancedEditor'; + $editors['editor']['class'] = 'Drupal\advanced_editor\Plugin\edit\editor\AdvancedEditor'; } /**