ViewsWizard.php

Same filename in this branch
  1. 11.x core/modules/views/src/Annotation/ViewsWizard.php
Same filename and directory in other branches
  1. 9 core/modules/views/src/Annotation/ViewsWizard.php
  2. 8.9.x core/modules/views/src/Annotation/ViewsWizard.php
  3. 10 core/modules/views/src/Annotation/ViewsWizard.php

Namespace

Drupal\views\Attribute

File

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.