You are here

function apachesolr_og_gid_key in Apache Solr Organic Groups Integration 6.2

Same name and namespace in other branches
  1. 6.3 apachesolr_og.module \apachesolr_og_gid_key()

Apachesolr index name for Organic group id

5 calls to apachesolr_og_gid_key()
apachesolr_og_apachesolr_facets in ./apachesolr_og.module
Implementation of hook_apachesolr_facets().
apachesolr_og_apachesolr_modify_query in ./apachesolr_og.module
Implementation of hook_apachesolr_modify_query().
apachesolr_og_apachesolr_process_results in ./apachesolr_og.module
Implementation of hook_apachesolr_process_results().
apachesolr_og_apachesolr_update_index in ./apachesolr_og.module
Implementation of hook_apachesolr_update_index().
apachesolr_og_block in ./apachesolr_og.module
Implementation of hook_block().

File

./apachesolr_og.module, line 113
Integrates Organic Group info with Apache Solr search application.

Code

function apachesolr_og_gid_key() {
  $group_id = array(
    'name' => 'og_gid',
    'multiple' => TRUE,
    'index_type' => 'integer',
  );

  // Returns im_og_gid.
  return apachesolr_index_key($group_id);
}