You are here

function panopoly_search_strongarm in Panopoly Search 7

Implements hook_strongarm().

File

./panopoly_search.strongarm.inc, line 10
panopoly_search.strongarm.inc

Code

function panopoly_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@database_node_index';
  $strongarm->value = -1;
  $export['facetapi:block_cache:search_api@database_node_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@node_index';
  $strongarm->value = -1;
  $export['facetapi:block_cache:search_api@node_index'] = $strongarm;
  return $export;
}