You are here

function enterprise_base_strongarm in Enterprise Base 7

Same name and namespace in other branches
  1. 7.3 enterprise_base.strongarm.inc \enterprise_base_strongarm()

Implements hook_strongarm().

File

./enterprise_base.strongarm.inc, line 10
enterprise_base.strongarm.inc

Code

function enterprise_base_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 = 'date_format_day';
  $strongarm->value = 'D, F d';
  $export['date_format_day'] = $strongarm;
  $strongarm = new stdClass();
  $strongarm->disabled = FALSE;

  /* Edit this to true to make a default strongarm disabled initially */
  $strongarm->api_version = 1;
  $strongarm->name = 'date_format_time';
  $strongarm->value = 'g:i a';
  $export['date_format_time'] = $strongarm;
  return $export;
}