You are here

LinkBadge.php in Link Badges 8

File

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

namespace Drupal\link_badges\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a LinkBadge annotation object.
 *
 * Plugin Namespace: Plugin\LinkBadge
 *
 * @see plugin_api
 *
 * @Annotation
 */
class LinkBadge extends Plugin {

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

  /**
   * The human-readable name of the link badge plugin.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $label;

}

Classes

Namesort descending Description
LinkBadge Defines a LinkBadge annotation object.