function apachesolr_og_gid_key in Apache Solr Organic Groups Integration 6.3
Same name and namespace in other branches
- 6.2 apachesolr_og.module \apachesolr_og_gid_key()
Apachesolr index name for Organic group id
2 calls to apachesolr_og_gid_key()
File
- ./
apachesolr_og.module, line 48 - 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);
}