You are here

class DisplayBuilder in Panels 8.3

Same name and namespace in other branches
  1. 8.4 src/Annotation/DisplayBuilder.php \Drupal\panels\Annotation\DisplayBuilder

Defines a display builder annotation object.

Hierarchy

Expanded class hierarchy of DisplayBuilder

1 file declares its use of DisplayBuilder
DisplayBuilderManager.php in src/Plugin/DisplayBuilder/DisplayBuilderManager.php
2 classes are annotated with DisplayBuilder
InPlaceEditorDisplayBuilder in panels_ipe/src/Plugin/DisplayBuilder/InPlaceEditorDisplayBuilder.php
The In-place editor display builder for viewing and editing a PanelsDisplayVariant in the same place.
StandardDisplayBuilder in src/Plugin/DisplayBuilder/StandardDisplayBuilder.php
The standard display builder for viewing a PanelsDisplayVariant.

File

src/Annotation/DisplayBuilder.php, line 16

Namespace

Drupal\panels\Annotation
View source
class DisplayBuilder extends Plugin {

  /**
   * The human-readable plugin label.
   *
   * @var string
   */
  public $label = '';

  /**
   * The plugin description.
   *
   * @var string
   */
  public $description = '';

}

Members

Namesort descending Modifiers Type Description Overrides
DisplayBuilder::$description public property The plugin description.
DisplayBuilder::$label public property The human-readable plugin label.
Plugin::$definition protected property The plugin definition read from the class annotation. 1
Plugin::get public function Gets the value of an annotation. Overrides AnnotationInterface::get 5
Plugin::getClass public function Gets the class of the annotated class. Overrides AnnotationInterface::getClass
Plugin::getId public function Gets the unique ID for this annotated class. Overrides AnnotationInterface::getId
Plugin::getProvider public function Gets the name of the provider of the annotated class. Overrides AnnotationInterface::getProvider
Plugin::parse protected function Parses an annotation into its definition.
Plugin::setClass public function Sets the class of the annotated class. Overrides AnnotationInterface::setClass
Plugin::setProvider public function Sets the name of the provider of the annotated class. Overrides AnnotationInterface::setProvider
Plugin::__construct public function Constructs a Plugin object. 2