core/modules/edit/lib/Drupal/edit/EditorBase.php | 6 +- .../edit/lib/Drupal/edit/EditorInterface.php | 60 ++++++++++++++++++++ .../lib/Drupal/edit/Plugin/EditorInterFace.php | 60 -------------------- .../edit/Plugin/edit/editor/DirectEditor.php | 2 +- .../Drupal/edit/Plugin/edit/editor/FormEditor.php | 2 +- .../edit_test/Plugin/edit/editor/WysiwygEditor.php | 4 +- 6 files changed, 67 insertions(+), 67 deletions(-) diff --git a/core/modules/edit/lib/Drupal/edit/EditorBase.php b/core/modules/edit/lib/Drupal/edit/EditorBase.php index ecb8ff5..b94a50f 100644 --- a/core/modules/edit/lib/Drupal/edit/EditorBase.php +++ b/core/modules/edit/lib/Drupal/edit/EditorBase.php @@ -8,7 +8,7 @@ namespace Drupal\edit; use Drupal\Component\Plugin\PluginBase; -use Drupal\edit\Plugin\EditorInterface; +use Drupal\edit\EditorInterface; use Drupal\field\FieldInstance; /** @@ -20,14 +20,14 @@ abstract class EditorBase extends PluginBase implements EditorInterface { /** - * Implements \Drupal\edit\Plugin\EditorInterface::getMetadata(). + * Implements \Drupal\edit\EditorInterface::getMetadata(). */ function getMetadata(FieldInstance $instance, array $items) { return array(); } /** - * Implements \Drupal\edit\Plugin\EditorInterface::getDynamicAttachments(). + * Implements \Drupal\edit\EditorInterface::getDynamicAttachments(). */ function getDynamicAttachments() { return array(); diff --git a/core/modules/edit/lib/Drupal/edit/EditorInterface.php b/core/modules/edit/lib/Drupal/edit/EditorInterface.php new file mode 100644 index 0000000..d6b0950 --- /dev/null +++ b/core/modules/edit/lib/Drupal/edit/EditorInterface.php @@ -0,0 +1,60 @@ +