You are here

DsFieldTemplate.php in Display Suite 8.4

File

src/Annotation/DsFieldTemplate.php
View source
<?php

namespace Drupal\ds\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a DsFieldTemplate annotation object.
 *
 * @Annotation
 */
class DsFieldTemplate extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The human-readable name of the DS field layout plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $title;

  /**
   * The theme function for this field layout.
   *
   * @var string
   */
  public $theme;

}

Classes

Namesort descending Description
DsFieldTemplate Defines a DsFieldTemplate annotation object.