You are here

function glazed_helper_strongarm in Glazed Theme Helper 7

Implements hook_strongarm().

File

./glazed_helper.strongarm.inc, line 10
glazed_helper.strongarm.inc

Code

function glazed_helper_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 = 'uuid_features_entity_field_collection_item_field_glazed_content_design';
  $strongarm->value = 'field_glazed_content_design';
  $export['uuid_features_entity_field_collection_item_field_glazed_content_design'] = $strongarm;
  return $export;
}