Skip to content

Commit

Permalink
move webtools block config into reps_core
Browse files Browse the repository at this point in the history
  • Loading branch information
libetho committed May 15, 2017
1 parent 0c86696 commit 2f21150
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions lib/features/reps_core/reps_core.info
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,7 @@ features[variable][] = date_format_short_de_
features[variable][] = date_format_time
features[variable][] = date_format_time_bg
features[variable][] = entity_translation_entity_types
features[variable][] = entity_translation_settings_bean__webtools
features[variable][] = extlink_css_exclude
features[variable][] = field_bundle_settings_node__reps_contact_point
features[variable][] = field_bundle_settings_node__reps_homepage
Expand Down
13 changes: 13 additions & 0 deletions lib/features/reps_core/reps_core.strongarm.inc
Original file line number Diff line number Diff line change
Expand Up @@ -312,6 +312,19 @@ function reps_core_strongarm() {
'user' => 0,
);
$export['entity_translation_entity_types'] = $strongarm;

$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'entity_translation_settings_bean__webtools';
$strongarm->value = array(
'default_language' => 'und',
'hide_language_selector' => 1,
'exclude_language_none' => 0,
'lock_language' => 0,
'shared_fields_original_only' => 0,
);
$export['entity_translation_settings_bean__webtools'] = $strongarm;

$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
Expand Down

0 comments on commit 2f21150

Please sign in to comment.