You are here

function spaces_test_strongarm in Spaces 6.3

Same name and namespace in other branches
  1. 7.3 tests/spaces_test.strongarm.inc \spaces_test_strongarm()
  2. 7 tests/spaces_test.strongarm.inc \spaces_test_strongarm()

Implementation of hook_strongarm().

File

tests/spaces_test.strongarm.inc, line 6

Code

function spaces_test_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 = 'og_content_type_usage_features_test';
  $strongarm->value = 'group_post_standard';
  $export['og_content_type_usage_features_test'] = $strongarm;
  return $export;
}