You are here

DisplayBuilder.php in Panels 8.3

Same filename and directory in other branches
  1. 8.4 src/Annotation/DisplayBuilder.php

File

src/Annotation/DisplayBuilder.php
View 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

Namesort descending Description
DisplayBuilder Defines a display builder annotation object.