You are here

function farm_quantity_strongarm in farmOS 7

Implements hook_strongarm().

File

modules/farm/farm_quantity/farm_quantity.strongarm.inc, line 10
farm_quantity.strongarm.inc

Code

function farm_quantity_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 = 'pathauto_taxonomy_term_farm_quantity_units_pattern';
  $strongarm->value = 'farm/unit/[term:name]';
  $export['pathauto_taxonomy_term_farm_quantity_units_pattern'] = $strongarm;
  return $export;
}