You are here

BibciteLink.php in Bibliography & Citation 2.0.x

Same filename and directory in other branches
  1. 8 modules/bibcite_entity/src/Annotation/BibciteLink.php

File

modules/bibcite_entity/src/Annotation/BibciteLink.php
View source
<?php

namespace Drupal\bibcite_entity\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Link item annotation object.
 *
 * @see \Drupal\bibcite_entity\Plugin\BibciteLinkPluginManager
 * @see plugin_api
 *
 * @Annotation
 */
class BibciteLink extends Plugin {

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

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

}

Classes

Namesort descending Description
BibciteLink Defines a Link item annotation object.