CustomTextDataType.php in Search API Solr 4.x
Same filename in this branch
Same filename and directory in other branches
File
src/Plugin/search_api/data_type/CustomTextDataType.phpView 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_custom",
* label = @Translation("Fulltext Custom"),
* description = @Translation("Custom full text field."),
* fallback_type = "text",
* prefix = "tc",
* deriver = "Drupal\search_api_solr\Plugin\Derivative\CustomTextDataType"
* )
*/
class CustomTextDataType extends TextDataType {
}
Classes
Name | Description |
---|---|
CustomTextDataType | Provides a not stemmed full text data type. |