Same filename and directory in other branches
  1. 8.9.x core/modules/views/src/Annotation/ViewsPluginAnnotationBase.php
  2. 9 core/modules/views/src/Annotation/ViewsPluginAnnotationBase.php

Namespace

Drupal\views\Annotation

File

core/modules/views/src/Annotation/ViewsPluginAnnotationBase.php
View source
<?php

namespace Drupal\views\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines an abstract base class for all views plugin annotations.
 */
abstract class ViewsPluginAnnotationBase extends Plugin {

  /**
   * Whether or not to register a theme function automatically.
   *
   * This property is optional and it does not need to be declared.
   *
   * @var bool
   */
  public $register_theme = TRUE;

}

Classes

Namesort descending Description
ViewsPluginAnnotationBase Defines an abstract base class for all views plugin annotations.