You are here

ViewsReferenceSetting.php in Views Reference Field 8.2

File

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

namespace Drupal\viewsreference\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a views reference setting item annotation object.
 *
 * @see \Drupal\viewsreference\Plugin\ViewsReferenceSettingManager
 * @see plugin_api
 *
 * @Annotation
 */
class ViewsReferenceSetting extends Plugin {

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

  /**
   * The label of the plugin.
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $label;

  /**
   * The field default value.
   *
   * @var mixed
   */
  public $default_value;

}

Classes

Namesort descending Description
ViewsReferenceSetting Defines a views reference setting item annotation object.