SourcePlugin.php

Namespace

Drupal\tmgmt\Annotation

File

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

namespace Drupal\tmgmt\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Source plugin annotation object.
 *
 * @Annotation
 *
 * @see \Drupal\tmgmt\SourceManager
 */
class SourcePlugin extends Plugin {

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

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

  /**
   * A short description of the source.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $description;

  /**
   * The name of the source plugin class.
   *
   * This is not provided manually, it will be added by the discovery mechanism.
   *
   * @var string
   */
  public $class;

  /**
   * An array with default values for this source.
   *
   * @var array
   */
  public $default_settings = array();

}

Classes

Namesort descending Description
SourcePlugin Defines a Source plugin annotation object.