You are here

function apachesolr_user_entity_info_alter in Apachesolr User 7

Implements hook_entity_info_alter().

File

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

Code

function apachesolr_user_entity_info_alter(&$entity_info) {
  $entity_info['user']['view modes'] += array(
    'search_index' => array(
      'label' => t('Search index'),
      'custom settings' => FALSE,
    ),
    'search_result' => array(
      'label' => t('Search result'),
      'custom settings' => FALSE,
    ),
  );
}