You are here

dxpr_theme_helper.strongarm.inc in DXPR Theme Helper 7

File

dxpr_theme_helper.strongarm.inc
View source
<?php

/**
 * @file
 * dxpr_theme_helper.strongarm.inc
 */

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

Functions

Namesort descending Description
dxpr_theme_helper_strongarm Implements hook_strongarm().