You are here

function search_api_test_entity_info in Search API 7

Implements hook_entity_info().

File

tests/search_api_test.module, line 112
Test functions and classes for testing the Search API.

Code

function search_api_test_entity_info() {
  return array(
    'search_api_test' => array(
      'label' => 'Search API test entity',
      'base table' => 'search_api_test',
      'uri callback' => 'search_api_test_uri',
      'entity keys' => array(
        'id' => 'id',
      ),
    ),
  );
}