function oa_search_strongarm in Open Atrium Search 7.2
Implements hook_strongarm().
File
- ./
oa_search.strongarm.inc, line 10 - oa_search.strongarm.inc
Code
function oa_search_strongarm() {
$export = array();
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'facetapi:block_cache:search_api@solr_user_index';
$strongarm->value = -1;
$export['facetapi:block_cache:search_api@solr_user_index'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'facetapi:block_cache:search_api@user_index';
$strongarm->value = -1;
$export['facetapi:block_cache:search_api@user_index'] = $strongarm;
return $export;
}