You are here

function search_api_default_field_types in Search API 7

Returns the default field types recognized by the Search API framework.

Return value

array An associative array with the default types as keys, mapped to their translated display names.

5 calls to search_api_default_field_types()
SearchApiIndex::getFields in includes/index_entity.inc
Returns a list of all known fields for this index.
search_api_admin_index_fields_submit in ./search_api.admin.inc
Form submission handler for search_api_admin_index_fields().
search_api_field_types in ./search_api.module
Returns all field types recognized by the Search API framework.
search_api_get_data_type_info in ./search_api.module
Returns either all custom field type definitions, or a specific one.
_search_api_admin_get_fields in ./search_api.admin.inc
Helper function for building the field list for an index.

File

./search_api.module, line 1969
Provides a flexible framework for implementing search services.

Code

function search_api_default_field_types() {
  return array(
    'text' => t('Fulltext'),
    'string' => t('String'),
    'integer' => t('Integer'),
    'decimal' => t('Decimal'),
    'date' => t('Date'),
    'duration' => t('Duration'),
    'boolean' => t('Boolean'),
    'uri' => t('URI'),
  );
}