function bear_necessities_strongarm in Bear 7
Same name and namespace in other branches
- 7.2 modules/bear_necessities/bear_necessities.strongarm.inc \bear_necessities_strongarm()
Implements hook_strongarm().
File
- modules/
bear_necessities/ bear_necessities.strongarm.inc, line 10 - bear_necessities.strongarm.inc
Code
function bear_necessities_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 = 'admin_theme';
$strongarm->value = 'seven';
$export['admin_theme'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'breadcrumbs_by_path_core_paths';
$strongarm->value = 'admin/*
node/*
user/*';
$export['breadcrumbs_by_path_core_paths'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'breadcrumbs_by_path_current_title';
$strongarm->value = 1;
$export['breadcrumbs_by_path_current_title'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'breadcrumbs_by_path_exclude_paths';
$strongarm->value = '<front>';
$export['breadcrumbs_by_path_exclude_paths'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'chosen_minimum_multiple';
$strongarm->value = 0;
$export['chosen_minimum_multiple'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'default_environment_indicator_environment';
$strongarm->value = array(
'default_environment' => TRUE,
);
$export['default_environment_indicator_environment'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'jquery_update_jquery_version';
$strongarm->value = '1.7';
$export['jquery_update_jquery_version'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'node_admin_theme';
$strongarm->value = '1';
$export['node_admin_theme'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'responsive_menus_ignore_admin';
$strongarm->value = array(
1 => '1',
);
$export['responsive_menus_ignore_admin'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'responsive_menus_no_jquery_update';
$strongarm->value = array(
1 => 0,
);
$export['responsive_menus_no_jquery_update'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'responsive_menus_sidr_animation_speed';
$strongarm->value = '200';
$export['responsive_menus_sidr_animation_speed'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'responsive_menus_sidr_css_selectors';
$strongarm->value = '.main-menu';
$export['responsive_menus_sidr_css_selectors'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'responsive_menus_sidr_displace';
$strongarm->value = '1';
$export['responsive_menus_sidr_displace'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'responsive_menus_sidr_media_size';
$strongarm->value = '800';
$export['responsive_menus_sidr_media_size'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'responsive_menus_sidr_menu_side';
$strongarm->value = 'left';
$export['responsive_menus_sidr_menu_side'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'responsive_menus_sidr_on_close';
$strongarm->value = '';
$export['responsive_menus_sidr_on_close'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'responsive_menus_sidr_on_open';
$strongarm->value = '';
$export['responsive_menus_sidr_on_open'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'responsive_menus_sidr_trigger_txt';
$strongarm->value = '<span></span>';
$export['responsive_menus_sidr_trigger_txt'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'responsive_menus_style';
$strongarm->value = 'sidr';
$export['responsive_menus_style'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'site_403';
$strongarm->value = 'access-denied';
$export['site_403'] = $strongarm;
return $export;
}