You are here

SuggesterTextDataType.php in Search API Solr 8.2

File

src/Plugin/search_api/data_type/SuggesterTextDataType.php
View source
<?php

namespace Drupal\search_api_solr\Plugin\search_api\data_type;


/**
 * Provides data type to feed the suggester component.
 *
 * @SearchApiDataType(
 *   id = "solr_text_suggester",
 *   label = @Translation("Suggester"),
 *   description = @Translation("Full text field to feed the suggester component."),
 *   fallback_type = "text",
 *   prefix = "tw"
 * )
 */
class SuggesterTextDataType extends WhiteSpaceTokensTextDataType {

}

Classes

Namesort descending Description
SuggesterTextDataType Provides data type to feed the suggester component.