farmOS/farm_livestock.strongarm.inc

66 lines
1.8 KiB
PHP
Raw Normal View History

<?php
/**
* @file
* farm_livestock.strongarm.inc
*/
/**
* Implements hook_strongarm().
*/
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 = 'field_bundle_settings_farm_asset__animal';
$strongarm->value = array(
'view_modes' => array(
'full' => array(
'custom_settings' => FALSE,
),
'token' => array(
'custom_settings' => FALSE,
),
),
'extra_fields' => array(
'form' => array(
'name' => array(
'weight' => '0',
),
'redirect' => array(
'weight' => '9',
),
),
'display' => array(),
),
);
$export['field_bundle_settings_farm_asset__animal'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'field_bundle_settings_field_collection_item__field_farm_animal_tag';
$strongarm->value = array(
'view_modes' => array(),
'extra_fields' => array(
'form' => array(
'redirect' => array(
'weight' => '0',
),
),
'display' => array(),
),
);
$export['field_bundle_settings_field_collection_item__field_farm_animal_tag'] = $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_breeds_pattern';
$strongarm->value = 'farm/animal/breed/[term:name]';
$export['pathauto_taxonomy_term_farm_animal_breeds_pattern'] = $strongarm;
return $export;
}