You are here

public function SearchApiExternalDataSourceController::getItemUrl in Search API 7

Get a URL at which the item can be viewed on the web.

Always returns NULL.

Parameters

$item: An item of this controller's type.

Return value

Either an array containing the 'path' and 'options' keys used to build the URL of the item, and matching the signature of url(), or NULL if the item has no URL of its own.

Overrides SearchApiAbstractDataSourceController::getItemUrl

File

includes/datasource_external.inc, line 118
Contains the SearchApiExternalDataSourceController class.

Class

SearchApiExternalDataSourceController
Base class for data source controllers for external data sources.

Code

public function getItemUrl($item) {
  return NULL;
}