You are here

FileMetadata.php in File metadata manager 8

Same filename in this branch
  1. 8 src/FileMetadata.php
  2. 8 src/Plugin/Annotation/FileMetadata.php
Same filename and directory in other branches
  1. 8.2 src/Plugin/Annotation/FileMetadata.php

File

src/Plugin/Annotation/FileMetadata.php
View source
<?php

namespace Drupal\file_mdm\Plugin\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Plugin annotation object for FileMetadata plugins.
 *
 * @Annotation
 */
class FileMetadata extends Plugin {

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

  /**
   * The title of the plugin.
   *
   * The string should be wrapped in a @Translation().
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $title;

  /**
   * An informative description of the plugin.
   *
   * The string should be wrapped in a @Translation().
   *
   * @var \Drupal\Core\Annotation\Translation
   *
   * @ingroup plugin_translatable
   */
  public $help;

}

Classes

Namesort descending Description
FileMetadata Defines a Plugin annotation object for FileMetadata plugins.