You are here

function farm_livestock_strongarm in farmOS 7

Implements hook_strongarm().

File

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

Code

function farm_livestock_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_farm_asset_animal_pattern';
  $strongarm->value = 'farm/animal/[farm_asset:name]';
  $export['pathauto_farm_asset_animal_pattern'] = $strongarm;
  $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_animal_types_pattern';
  $strongarm->value = 'farm/animal/type/[term:name]';
  $export['pathauto_taxonomy_term_farm_animal_types_pattern'] = $strongarm;
  return $export;
}