ViewsWizard.php
Same filename in this branch
Same filename in other branches
Namespace
Drupal\views\AttributeFile
-
core/
modules/ views/ src/ Attribute/ ViewsWizard.php
View source
<?php
namespace Drupal\views\Attribute;
use Drupal\Component\Plugin\Attribute\Plugin;
use Drupal\Core\StringTranslation\TranslatableMarkup;
/**
* Defines a Plugin attribute object for views wizard plugins.
*
* @see \Drupal\views\Plugin\views\wizard\WizardPluginBase
* @see \Drupal\views\Plugin\views\wizard\WizardInterface
*
* @ingroup views_wizard_plugins
*/
class ViewsWizard extends Plugin {
/**
* Constructs an ViewsWizard attribute.
*
* @param string $id
* The plugin ID.
* @param \Drupal\Core\StringTranslation\TranslatableMarkup $title
* The plugin title used in the views UI.
* @param string|null $base_table
* (optional) The base table on which this wizard is used. The base_table is
* required when a deriver class is not defined.
* @param class-string|null $deriver
* (optional) The deriver class.
*/
public function __construct(string $id, TranslatableMarkup $title, ?string $base_table = NULL, ?string $deriver = NULL) {
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
ViewsWizard | Defines a Plugin attribute object for views wizard plugins. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.