You are here

Text.php in Geocoder 8.3

Same filename and directory in other branches
  1. 8.2 modules/geocoder_field/src/Plugin/Geocoder/Preprocessor/Text.php

File

modules/geocoder_field/src/Plugin/Geocoder/Preprocessor/Text.php
View source
<?php

namespace Drupal\geocoder_field\Plugin\Geocoder\Preprocessor;

use Drupal\geocoder_field\PreprocessorBase;

/**
 * Provides a geocoder preprocessor plugin for text fields.
 *
 * @todo [cc]: What is the reason for this plugin? It returns exactly what it
 *   receives.
 *
 * @GeocoderPreprocessor(
 *   id = "text",
 *   name = "Text",
 *   field_types = {
 *     "string",
 *     "string_long",
 *     "text",
 *     "text_long"
 *   }
 * )
 */
class Text extends PreprocessorBase {

}

Classes

Namesort descending Description
Text Provides a geocoder preprocessor plugin for text fields.