mirror of
https://github.com/farmOS/farmOS.git
synced 2024-02-23 11:37:38 +01:00
Strongarm the planting location field bundle settings.
This commit is contained in:
parent
7fe01f49c8
commit
8ac136b7c0
2 changed files with 31 additions and 0 deletions
|
@ -106,6 +106,7 @@ features[variable][] = field_bundle_settings_log__farm_cultivation
|
|||
features[variable][] = field_bundle_settings_log__farm_harvest
|
||||
features[variable][] = field_bundle_settings_log__farm_input
|
||||
features[variable][] = field_bundle_settings_log__farm_planting
|
||||
features[variable][] = field_bundle_settings_log__farm_planting_location
|
||||
features[variable][] = pathauto_taxonomy_term_farm_input_types_pattern
|
||||
features[views_view][] = farm_log_cultivation
|
||||
features[views_view][] = farm_log_harvest
|
||||
|
|
|
@ -106,6 +106,36 @@ function farm_log_crops_strongarm() {
|
|||
);
|
||||
$export['field_bundle_settings_log__farm_planting'] = $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_log__farm_planting_location';
|
||||
$strongarm->value = array(
|
||||
'view_modes' => array(
|
||||
'entityreference_view_widget' => array(
|
||||
'custom_settings' => TRUE,
|
||||
),
|
||||
'full' => array(
|
||||
'custom_settings' => FALSE,
|
||||
),
|
||||
'diff_standard' => array(
|
||||
'custom_settings' => FALSE,
|
||||
),
|
||||
'token' => array(
|
||||
'custom_settings' => FALSE,
|
||||
),
|
||||
),
|
||||
'extra_fields' => array(
|
||||
'form' => array(
|
||||
'redirect' => array(
|
||||
'weight' => '6',
|
||||
),
|
||||
),
|
||||
'display' => array(),
|
||||
),
|
||||
);
|
||||
$export['field_bundle_settings_log__farm_planting_location'] = $strongarm;
|
||||
|
||||
$strongarm = new stdClass();
|
||||
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
||||
$strongarm->api_version = 1;
|
||||
|
|
Loading…
Reference in a new issue