You are here

function commons_profile_strongarm in Drupal Commons 6.2

Implementation of hook_strongarm().

File

modules/features/commons_profile/commons_profile.strongarm.inc, line 6

Code

function commons_profile_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 = 'user_terms_vocabs';
  $strongarm->value = array(
    1 => '1',
  );
  $export['user_terms_vocabs'] = $strongarm;
  return $export;
}