DisplayBuilder.php in Panels 8.3
Same filename and directory in other branches
Namespace
Drupal\panels\AnnotationFile
src/Annotation/DisplayBuilder.phpView source
<?php
/**
* @file
*/
namespace Drupal\panels\Annotation;
use Drupal\Component\Annotation\Plugin;
/**
* Defines a display builder annotation object.
*
* @Annotation
*/
class DisplayBuilder extends Plugin {
/**
* The human-readable plugin label.
*
* @var string
*/
public $label = '';
/**
* The plugin description.
*
* @var string
*/
public $description = '';
}
Classes
Name | Description |
---|---|
DisplayBuilder | Defines a display builder annotation object. |