diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/display/Data.php b/core/modules/views/lib/Drupal/views/Plugin/views/display/Data.php index 323c7c9..dce9e5a 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/display/Data.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/display/Data.php @@ -19,6 +19,7 @@ * * @Plugin( * id = "data", + * module = "views", * title = @Translation("Data"), * help = @Translation("Display views as data output formats"), * uses_hook_menu = TRUE, @@ -114,8 +115,8 @@ public function setMimeType($mime_type) { /** * Gets the mime type. * - * This will return any overriden content type, otherwise returns the - * content type from the request. + * This will return any overriden mime type, otherwise returns the mime type + * from the request. * * @var string * The response mime type. E.g. 'application/json'. diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/row/DataFieldRow.php b/core/modules/views/lib/Drupal/views/Plugin/views/row/DataFieldRow.php index 056d04b..edc902a 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/row/DataFieldRow.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/row/DataFieldRow.php @@ -19,7 +19,7 @@ * * @Plugin( * id = "data_field", - * module = "system", + * module = "views", * title = @Translation("Fields"), * help = @Translation("Use fields as row data."), * type = "data" diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/style/Serialize.php b/core/modules/views/lib/Drupal/views/Plugin/views/style/Serialize.php index 1fb1053..d8d603b 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/style/Serialize.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/style/Serialize.php @@ -19,6 +19,7 @@ * * @Plugin( * id = "serialize", + * module = "views", * title = @Translation("Serializer"), * help = @Translation("Serializes views row data using the Serializer component."), * type = "data"