You are here

spaces_test.strongarm.inc in Spaces 6.3

Same filename and directory in other branches
  1. 7.3 tests/spaces_test.strongarm.inc
  2. 7 tests/spaces_test.strongarm.inc

File

tests/spaces_test.strongarm.inc
View source
<?php

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

Functions

Namesort descending Description
spaces_test_strongarm Implementation of hook_strongarm().