Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save wimleers/5665029 to your computer and use it in GitHub Desktop.
Save wimleers/5665029 to your computer and use it in GitHub Desktop.
diff --git a/core/modules/editor/lib/Drupal/editor/Annotation/Editor.php b/core/modules/editor/lib/Drupal/editor/Annotation/Editor.php
index 5a45910..fd9b049 100644
--- a/core/modules/editor/lib/Drupal/editor/Annotation/Editor.php
+++ b/core/modules/editor/lib/Drupal/editor/Annotation/Editor.php
@@ -33,13 +33,6 @@ class Editor extends Plugin {
public $label;
/**
- * The name of the module providing the editor plugin.
- *
- * @var string
- */
- public $module;
-
- /**
* Whether the editor supports the inline editing provided by the Edit module.
*
* @var boolean
diff --git a/core/modules/editor/lib/Drupal/editor/Plugin/Core/Entity/Editor.php b/core/modules/editor/lib/Drupal/editor/Plugin/Core/Entity/Editor.php
index 00eae37..0168b7f 100644
--- a/core/modules/editor/lib/Drupal/editor/Plugin/Core/Entity/Editor.php
+++ b/core/modules/editor/lib/Drupal/editor/Plugin/Core/Entity/Editor.php
@@ -17,8 +17,7 @@
*
* @EntityType(
* id = "editor",
- * label = @Translation("Editor"),
- * module = "editor",
+ * label = @Translation("Editor")
* controllers = {
* "storage" = "Drupal\Core\Config\Entity\ConfigStorageController"
* },
diff --git a/core/modules/editor/lib/Drupal/editor/Plugin/EditorBase.php b/core/modules/editor/lib/Drupal/editor/Plugin/EditorBase.php
index 2a4b167..6993ed6 100644
--- a/core/modules/editor/lib/Drupal/editor/Plugin/EditorBase.php
+++ b/core/modules/editor/lib/Drupal/editor/Plugin/EditorBase.php
@@ -31,8 +31,7 @@
* @code
* @Editor(
* id = "myeditor",
- * label = @Translation("My Editor"),
- * module = "mymodule"
+ * label = @Translation("My Editor")
* )
* @endcode
*/
diff --git a/core/modules/editor/tests/modules/lib/Drupal/editor_test/Plugin/Editor/UnicornEditor.php b/core/modules/editor/tests/modules/lib/Drupal/editor_test/Plugin/Editor/UnicornEditor.php
index 52fd3ab..73b358b 100644
--- a/core/modules/editor/tests/modules/lib/Drupal/editor_test/Plugin/Editor/UnicornEditor.php
+++ b/core/modules/editor/tests/modules/lib/Drupal/editor_test/Plugin/Editor/UnicornEditor.php
@@ -17,8 +17,7 @@
*
* @Editor(
* id = "unicorn",
- * label = @Translation("Unicorn Editor"),
- * module = "editor_test",
+ * label = @Translation("Unicorn Editor")
* supports_inline_editing = TRUE
* )
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment