You are here

Html.php in Search API 8

File

src/Plugin/DataType/Html.php
View source
<?php

namespace Drupal\search_api\Plugin\DataType;


/**
 * Defines a data type for fulltext fields containing valid HTML.
 *
 * This data type can be used in addition to "search_api_text" by processors
 * that define properties which always already contain valid HTML (to avoid
 * double-escaping where possible).
 *
 * @DataType(
 *   id = "search_api_html",
 *   label = @Translation("HTML text (Search API)")
 * )
 */
class Html extends Text {

}

Classes

Namesort descending Description
Html Defines a data type for fulltext fields containing valid HTML.