You are here

SearchApiAttachmentsTextExtractor.php in Search API attachments 9.0.x

Same filename and directory in other branches
  1. 8 src/Annotation/SearchApiAttachmentsTextExtractor.php

File

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

namespace Drupal\search_api_attachments\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Plugin annotation object.
 *
 * @ingroup plugin_api
 *
 * @Annotation
 */
class SearchApiAttachmentsTextExtractor extends Plugin {

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

  /**
   * The plugins label.
   *
   * @var string
   */
  public $label;

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

}

Classes

Namesort descending Description
SearchApiAttachmentsTextExtractor Defines a Plugin annotation object.