You are here

ViewsPluginAnnotationBase.php in Drupal 8

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

File

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

namespace Drupal\views\Annotation;

use Drupal\Component\Annotation\AnnotationInterface;
use Drupal\Component\Annotation\Plugin;

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

  /**
   * Whether or not to register a theme function automatically.
   *
   * @var bool (optional)
   */
  public $register_theme = TRUE;

}

Classes

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