Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

ViewsWizard.php

Same filename in this branch
  1. 11.1.x 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.

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal