You are here

abstract protected function SearchApiViewsHandlerFilterEntity::ids_to_strings in Search API 7

Transforms an array of entity IDs into a comma-separated list of labels.

Parameters

array $ids: The entity IDs to transform.

Return value

string A string containing the labels corresponding to the IDs, separated by commas.

2 calls to SearchApiViewsHandlerFilterEntity::ids_to_strings()
SearchApiViewsHandlerFilterEntity::admin_summary in contrib/search_api_views/includes/handler_filter_entity.inc
Display the filter on the administrative summary
SearchApiViewsHandlerFilterEntity::value_form in contrib/search_api_views/includes/handler_filter_entity.inc
Provide a form for setting the filter value.
2 methods override SearchApiViewsHandlerFilterEntity::ids_to_strings()
SearchApiViewsHandlerFilterTaxonomyTerm::ids_to_strings in contrib/search_api_views/includes/handler_filter_taxonomy_term.inc
Transforms an array of entity IDs into a comma-separated list of labels.
SearchApiViewsHandlerFilterUser::ids_to_strings in contrib/search_api_views/includes/handler_filter_user.inc
Transforms an array of entity IDs into a comma-separated list of labels.

File

contrib/search_api_views/includes/handler_filter_entity.inc, line 51
Contains SearchApiViewsHandlerFilterEntity.

Class

SearchApiViewsHandlerFilterEntity
Views filter handler class for entities.

Code

protected abstract function ids_to_strings(array $ids);