Created
May 28, 2013 18:37
-
-
Save wimleers/5665029 to your computer and use it in GitHub Desktop.
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
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