Issue #1783028 by dawehner: Fixed Add a standard implementation of arguments.

8.0.x
dereine 2012-09-13 08:34:47 +02:00 committed by Tim Plunkett
parent 03a3b24854
commit 3a12bbe055
1 changed files with 23 additions and 0 deletions

View File

@ -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 {
}