You are here

function apachesolr_user_apachesolr_entity_info_alter in Apachesolr User 7

@file Indexer for the user entities for the Apachesolr module.

File

./apachesolr_user.module, line 25
Indexer for the user entities for the Apachesolr module.

Code

function apachesolr_user_apachesolr_entity_info_alter(&$entity_info) {
  $entity_info['user']['indexable'] = TRUE;
  $entity_info['user']['status callback'][] = 'apachesolr_user_status_callback';
  $entity_info['user']['document callback'][] = 'apachesolr_index_user_solr_document';
  $entity_info['user']['reindex callback'] = 'apachesolr_user_solr_reindex';
  $entity_info['user']['index_table'] = 'apachesolr_index_entities_user';

  //$entity_info['node']['cron_check'] = 'apachesolr_index_user_check_table';
  $entity_info['user']['result callback'] = 'apachesolr_user_result';
}