function spaces_test_strongarm in Spaces 7
Same name and namespace in other branches
- 6.3 tests/spaces_test.strongarm.inc \spaces_test_strongarm()
 - 7.3 tests/spaces_test.strongarm.inc \spaces_test_strongarm()
 
Implements 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;
}