You are here

public function SearchApiServer::supportsFeature in Search API 7

Determines whether this service class supports a given feature.

See also

SearchApiServiceInterface::supportsFeature()

File

includes/server_entity.inc, line 196
Contains SearchApiServer.

Class

SearchApiServer
Class representing a search server.

Code

public function supportsFeature($feature) {
  $this
    ->ensureProxy();
  return $this->proxy
    ->supportsFeature($feature);
}