function apachesolr_og_enable in Apache Solr Organic Groups Integration 6.2
Implementation of hook_enable().
File
- ./
apachesolr_og.install, line 14
Code
function apachesolr_og_enable() {
$facet_missing = variable_get('apachesolr_facet_missing', array());
$facet_missing['apachesolr_og']['im_og_gid'] = 1;
variable_set('apachesolr_facet_missing', $facet_missing);
drupal_set_message(t('All existing Organic Group posts will be re-indexed'), 'warning');
db_query("UPDATE {apachesolr_search_node} SET changed = %d WHERE nid IN (SELECT nid FROM {og_ancestry})", time());
}