You are here

ActionLinkType.php in Flag 8.4

File

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

namespace Drupal\flag\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines an ActionLink annotation object.
 *
 * @Annotation
 */
class ActionLinkType extends Plugin {

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

  /**
   * The plugin description.
   *
   * @var string
   */
  public $description;

}

Classes

Namesort descending Description
ActionLinkType Defines an ActionLink annotation object.