diff --git a/core/modules/views/lib/Drupal/views/Plugin/views/wizard/Standard.php b/core/modules/views/lib/Drupal/views/Plugin/views/wizard/Standard.php index 82df0b8..c2e034e 100644 --- a/core/modules/views/lib/Drupal/views/Plugin/views/wizard/Standard.php +++ b/core/modules/views/lib/Drupal/views/Plugin/views/wizard/Standard.php @@ -8,11 +8,13 @@ namespace Drupal\views\Plugin\views\wizard; use Drupal\views\Annotation\ViewsWizard; +use Drupal\Core\Annotation\Translation; /** * @ViewsWizard( * id = "standard", - * derivative = "Drupal\views\Plugin\Derivative\DefaultWizardDeriver" + * derivative = "Drupal\views\Plugin\Derivative\DefaultWizardDeriver", + * title = @Translation("Default wizard") * ) */ class Standard extends WizardPluginBase { diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display/DisplayNoAreaTest.php b/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display/DisplayNoAreaTest.php index 1aaa1d3..3f29e71 100644 --- a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display/DisplayNoAreaTest.php +++ b/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display/DisplayNoAreaTest.php @@ -16,6 +16,7 @@ * @ViewsDisplay( * id = "display_no_area_test", * title = @Translation("Display test no area"), + * help = @Translation("Defines a display test with areas disabled."), * theme = "views_view", * contextual_links_locations = {"view"} * ) diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display/DisplayTest.php b/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display/DisplayTest.php index e845944..1b6ebd2 100644 --- a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display/DisplayTest.php +++ b/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/display/DisplayTest.php @@ -17,6 +17,7 @@ * @ViewsDisplay( * id = "display_test", * title = @Translation("Display test"), + * help = @Translation("Defines a display test plugin."), * theme = "views_view", * contextual_links_locations = {"view"} * ) diff --git a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/query/QueryTest.php b/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/query/QueryTest.php index 9f62b57..df8c2e3 100644 --- a/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/query/QueryTest.php +++ b/core/modules/views/tests/modules/views_test_data/lib/Drupal/views_test_data/Plugin/views/query/QueryTest.php @@ -18,7 +18,8 @@ * * @ViewsQuery( * id = "query_test", - * title = @Translation("Query test") + * title = @Translation("Query test"), + * help = @Translation("Defines a query test plugin.") * ) */ class QueryTest extends QueryPluginBase {