You are here

oa_search.strongarm.inc in Open Atrium Search 7.2

File

oa_search.strongarm.inc
View source
<?php

/**
 * @file
 * oa_search.strongarm.inc
 */

/**
 * Implements hook_strongarm().
 */
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;
}

Functions

Namesort descending Description
oa_search_strongarm Implements hook_strongarm().