You are here

UnstemmedTextDataType.php in Search API Solr 8.2

File

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

namespace Drupal\search_api_solr\Plugin\search_api\data_type;

use Drupal\search_api\Plugin\search_api\data_type\TextDataType;

/**
 * Provides a not stemmed full text data type.
 *
 * @SearchApiDataType(
 *   id = "solr_text_unstemmed",
 *   label = @Translation("Fulltext Unstemmed"),
 *   description = @Translation("Full text field without stemming."),
 *   fallback_type = "text",
 *   prefix = "tu"
 * )
 */
class UnstemmedTextDataType extends TextDataType {

}

Classes

Namesort descending Description
UnstemmedTextDataType Provides a not stemmed full text data type.