From 3a12bbe055bdc117172d69cc1c2a75a4d32242cf Mon Sep 17 00:00:00 2001 From: dereine <dereine@99340.no-reply.drupal.org> Date: Thu, 13 Sep 2012 08:34:47 +0200 Subject: [PATCH] Issue #1783028 by dawehner: Fixed Add a standard implementation of arguments. --- .../views/Plugin/views/argument/Standard.php | 23 +++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 lib/Drupal/views/Plugin/views/argument/Standard.php diff --git a/lib/Drupal/views/Plugin/views/argument/Standard.php b/lib/Drupal/views/Plugin/views/argument/Standard.php new file mode 100644 index 000000000000..d7dafb37ef62 --- /dev/null +++ b/lib/Drupal/views/Plugin/views/argument/Standard.php @@ -0,0 +1,23 @@ +<?php + +/** + * @file + * Definition of Drupal\views\Plugin\views\argument\Standard. + */ + +namespace Drupal\views\Plugin\views\argument; + +use Drupal\Core\Annotation\Plugin; + +/** + * Default implementation of the base argument plugin. + * + * @ingroup views_argument_handlers + * + * @Plugin( + * id = "standard" + * ) + */ +class Standard extends ArgumentPluginBase { + +} -- GitLab