You are here

function dxpr_theme_helper_strongarm in DXPR Theme Helper 7

Implements hook_strongarm().

File

./dxpr_theme_helper.strongarm.inc, line 10
dxpr_theme_helper.strongarm.inc

Code

function dxpr_theme_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_dxpr_theme_content_design';
  $strongarm->value = 'field_dxpr_theme_content_design';
  $export['uuid_features_entity_field_collection_item_field_dxpr_theme_content_design'] = $strongarm;
  return $export;
}