ViewsPluginAnnotationBase.php in Drupal 10
Same filename and directory in other branches
Namespace
Drupal\views\AnnotationFile
core/modules/views/src/Annotation/ViewsPluginAnnotationBase.phpView 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
Name | Description |
---|---|
ViewsPluginAnnotationBase | Defines an abstract base class for all views plugin annotations. |