1356 lines
52 KiB
PHP
1356 lines
52 KiB
PHP
<?php
|
|
/**
|
|
* @file
|
|
* admin.strongarm.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_strongarm().
|
|
*/
|
|
function admin_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 = 'adminimal_admin_menu_toolbar-disabled';
|
|
$strongarm->value = TRUE;
|
|
$export['adminimal_admin_menu_toolbar-disabled'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'admin_menu_devel_modules_skip';
|
|
$strongarm->value = array(
|
|
'devel' => 0,
|
|
'devel_node_access' => 0,
|
|
'views_ui' => 0,
|
|
);
|
|
$export['admin_menu_devel_modules_skip'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'admin_menu_display';
|
|
$strongarm->value = 'plid';
|
|
$export['admin_menu_display'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'admin_menu_margin_top';
|
|
$strongarm->value = 1;
|
|
$export['admin_menu_margin_top'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'admin_menu_position_fixed';
|
|
$strongarm->value = 0;
|
|
$export['admin_menu_position_fixed'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'admin_menu_show_all';
|
|
$strongarm->value = 0;
|
|
$export['admin_menu_show_all'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'admin_menu_source_settings';
|
|
$strongarm->value = array(
|
|
1 => array(
|
|
'source' => '',
|
|
),
|
|
2 => array(
|
|
'source' => '',
|
|
),
|
|
3 => array(
|
|
'source' => 'navigation',
|
|
),
|
|
4 => array(
|
|
'source' => '',
|
|
),
|
|
);
|
|
$export['admin_menu_source_settings'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'admin_menu_tweak_modules';
|
|
$strongarm->value = 0;
|
|
$export['admin_menu_tweak_modules'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'admin_menu_tweak_permissions';
|
|
$strongarm->value = 0;
|
|
$export['admin_menu_tweak_permissions'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'admin_menu_tweak_tabs';
|
|
$strongarm->value = 0;
|
|
$export['admin_menu_tweak_tabs'] = $strongarm;
|
|
|
|
$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 = 'adminimal';
|
|
$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 = 'admin_theme_admin_theme_batch';
|
|
$strongarm->value = 1;
|
|
$export['admin_theme_admin_theme_batch'] = $strongarm;
|
|
|
|
$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_admin_theme_devel';
|
|
$strongarm->value = 1;
|
|
$export['admin_theme_admin_theme_devel'] = $strongarm;
|
|
|
|
$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_path';
|
|
$strongarm->value = '';
|
|
$export['admin_theme_path'] = $strongarm;
|
|
|
|
$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_path_disallow';
|
|
$strongarm->value = '';
|
|
$export['admin_theme_path_disallow'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'admin_toolbar';
|
|
$strongarm->value = array(
|
|
'layout' => 'vertical',
|
|
'position' => 'nw',
|
|
'behavior' => 'df',
|
|
'blocks' => array(
|
|
'admin-devel' => -1,
|
|
'locale-language' => -1,
|
|
'user-online' => -1,
|
|
),
|
|
);
|
|
$export['admin_toolbar'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'anonymous';
|
|
$strongarm->value = 'Anonymous';
|
|
$export['anonymous'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'backup_migrate_destination_id';
|
|
$strongarm->value = 'manual';
|
|
$export['backup_migrate_destination_id'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'backup_migrate_profile_id';
|
|
$strongarm->value = 'default';
|
|
$export['backup_migrate_profile_id'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'backup_migrate_schedule_last_run_fe3e5b1c4207b4acebf28f646b324e8a';
|
|
$strongarm->value = 1424170448;
|
|
$export['backup_migrate_schedule_last_run_fe3e5b1c4207b4acebf28f646b324e8a'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'backup_migrate_source_id';
|
|
$strongarm->value = 'db';
|
|
$export['backup_migrate_source_id'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'configurable_timezones';
|
|
$strongarm->value = 1;
|
|
$export['configurable_timezones'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'content_type_extras_node_options';
|
|
$strongarm->value = array(
|
|
'status' => 'status',
|
|
'promote' => 0,
|
|
'sticky' => 0,
|
|
'revision' => 0,
|
|
);
|
|
$export['content_type_extras_node_options'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'content_type_extras_node_preview';
|
|
$strongarm->value = '0';
|
|
$export['content_type_extras_node_preview'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'content_type_extras_node_save_edit';
|
|
$strongarm->value = '1';
|
|
$export['content_type_extras_node_save_edit'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'content_type_extras_node_save_new';
|
|
$strongarm->value = '0';
|
|
$export['content_type_extras_node_save_new'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'content_type_extras_node_submitted';
|
|
$strongarm->value = 0;
|
|
$export['content_type_extras_node_submitted'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'content_type_extras_save_and_edit_button_value';
|
|
$strongarm->value = 'Save and Edit';
|
|
$export['content_type_extras_save_and_edit_button_value'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'content_type_extras_save_and_new_button_value';
|
|
$strongarm->value = 'Save and New';
|
|
$export['content_type_extras_save_and_new_button_value'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'content_type_extras_title_label';
|
|
$strongarm->value = 'Title';
|
|
$export['content_type_extras_title_label'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'content_type_extras_user_permissions_create';
|
|
$strongarm->value = array(
|
|
3 => '3',
|
|
4 => '4',
|
|
1 => 0,
|
|
2 => 0,
|
|
);
|
|
$export['content_type_extras_user_permissions_create'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'content_type_extras_user_permissions_delete';
|
|
$strongarm->value = array(
|
|
3 => '3',
|
|
4 => '4',
|
|
1 => 0,
|
|
2 => 0,
|
|
);
|
|
$export['content_type_extras_user_permissions_delete'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'content_type_extras_user_permissions_edit';
|
|
$strongarm->value = array(
|
|
3 => '3',
|
|
4 => '4',
|
|
1 => 0,
|
|
2 => 0,
|
|
);
|
|
$export['content_type_extras_user_permissions_edit'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'content_type_extras__active_tab';
|
|
$strongarm->value = 'edit-user-permissions';
|
|
$export['content_type_extras__active_tab'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'devel_api_url';
|
|
$strongarm->value = 'api.drupal.org';
|
|
$export['devel_api_url'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'devel_error_handlers';
|
|
$strongarm->value = array(
|
|
1 => '1',
|
|
);
|
|
$export['devel_error_handlers'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'devel_execution';
|
|
$strongarm->value = '5';
|
|
$export['devel_execution'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'devel_krumo_skin';
|
|
$strongarm->value = 'default';
|
|
$export['devel_krumo_skin'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'devel_memory';
|
|
$strongarm->value = 0;
|
|
$export['devel_memory'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'devel_page_alter';
|
|
$strongarm->value = 0;
|
|
$export['devel_page_alter'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'devel_query_display';
|
|
$strongarm->value = 0;
|
|
$export['devel_query_display'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'devel_query_sort';
|
|
$strongarm->value = '0';
|
|
$export['devel_query_sort'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_cache_menu';
|
|
$strongarm->value = 0;
|
|
$export['editmenu_cache_menu'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_css_filename';
|
|
$strongarm->value = '';
|
|
$export['editmenu_css_filename'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_detect_popup';
|
|
$strongarm->value = 1;
|
|
$export['editmenu_detect_popup'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_dropdown_zindex';
|
|
$strongarm->value = '9999';
|
|
$export['editmenu_dropdown_zindex'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_effect';
|
|
$strongarm->value = 'opacity';
|
|
$export['editmenu_effect'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_effect_speed';
|
|
$strongarm->value = 'fast';
|
|
$export['editmenu_effect_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 = 'editmenu_element';
|
|
$strongarm->value = 'body';
|
|
$export['editmenu_element'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_element_method';
|
|
$strongarm->value = 'prepend';
|
|
$export['editmenu_element_method'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_exclusions';
|
|
$strongarm->value = array(
|
|
'adaptivetheme_gui_admin' => 0,
|
|
'adaptivetheme_gui_starter' => 0,
|
|
'bartik' => 0,
|
|
'garland' => 0,
|
|
'gui7' => 0,
|
|
'guibik' => 0,
|
|
'inigui' => 0,
|
|
'rubik' => 0,
|
|
'seven' => 0,
|
|
'stark' => 0,
|
|
'tao' => 0,
|
|
);
|
|
$export['editmenu_exclusions'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_fix';
|
|
$strongarm->value = 'scroll';
|
|
$export['editmenu_fix'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_hide_delay';
|
|
$strongarm->value = '800';
|
|
$export['editmenu_hide_delay'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_menu';
|
|
$strongarm->value = 'management:0';
|
|
$export['editmenu_menu'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_menubar_zindex';
|
|
$strongarm->value = '9999';
|
|
$export['editmenu_menubar_zindex'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_menu_scope';
|
|
$strongarm->value = 'footer';
|
|
$export['editmenu_menu_scope'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_running';
|
|
$strongarm->value = FALSE;
|
|
$export['editmenu_running'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_superfish_version';
|
|
$strongarm->value = 'superfish-1.4.1.js';
|
|
$export['editmenu_superfish_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 = 'editmenu_theme';
|
|
$strongarm->value = 'original';
|
|
$export['editmenu_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 = 'editmenu_uid1';
|
|
$strongarm->value = 0;
|
|
$export['editmenu_uid1'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_visibility_operator';
|
|
$strongarm->value = '0';
|
|
$export['editmenu_visibility_operator'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'editmenu_visibility_pages';
|
|
$strongarm->value = '';
|
|
$export['editmenu_visibility_pages'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'file_private_path';
|
|
$strongarm->value = 'sites/default/private/';
|
|
$export['file_private_path'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'file_public_path';
|
|
$strongarm->value = 'sites/default/files';
|
|
$export['file_public_path'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'file_temporary_path';
|
|
$strongarm->value = '/tmp';
|
|
$export['file_temporary_path'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'footer_message_msg';
|
|
$strongarm->value = array(
|
|
'value' => '<p>clameurs</p>',
|
|
'format' => 'filtred_html',
|
|
);
|
|
$export['footer_message_msg'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'imce_custom_content';
|
|
$strongarm->value = array(
|
|
'imce_file_path_content' => 1,
|
|
'imce_mkdir_content' => 1,
|
|
'imce_search_content' => 1,
|
|
);
|
|
$export['imce_custom_content'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'imce_custom_process';
|
|
$strongarm->value = array(
|
|
'imce_mkdir_process_profile' => 1,
|
|
);
|
|
$export['imce_custom_process'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'imce_profiles';
|
|
$strongarm->value = array(
|
|
1 => array(
|
|
'name' => 'User-1',
|
|
'usertab' => 1,
|
|
'filesize' => 0,
|
|
'quota' => 0,
|
|
'tuquota' => 0,
|
|
'extensions' => '*',
|
|
'dimensions' => '1200x1200',
|
|
'filenum' => 0,
|
|
'directories' => array(
|
|
0 => array(
|
|
'name' => '.',
|
|
'subnav' => 1,
|
|
'browse' => 1,
|
|
'upload' => 1,
|
|
'thumb' => 1,
|
|
'delete' => 1,
|
|
'resize' => 1,
|
|
'mkdir' => 1,
|
|
'rmdir' => 1,
|
|
),
|
|
),
|
|
'thumbnails' => array(
|
|
0 => array(
|
|
'name' => 'Small',
|
|
'dimensions' => '90x90',
|
|
'prefix' => 'small_',
|
|
'suffix' => '',
|
|
),
|
|
1 => array(
|
|
'name' => 'Medium',
|
|
'dimensions' => '120x120',
|
|
'prefix' => 'medium_',
|
|
'suffix' => '',
|
|
),
|
|
2 => array(
|
|
'name' => 'Large',
|
|
'dimensions' => '180x180',
|
|
'prefix' => 'large_',
|
|
'suffix' => '',
|
|
),
|
|
),
|
|
'mkdirnum' => 0,
|
|
),
|
|
2 => array(
|
|
'name' => 'Admin profile',
|
|
'usertab' => 0,
|
|
'filesize' => '0',
|
|
'quota' => '0',
|
|
'tuquota' => '0',
|
|
'extensions' => 'gif png jpg jpeg',
|
|
'dimensions' => '2000x2000',
|
|
'filenum' => '0',
|
|
'directories' => array(
|
|
0 => array(
|
|
'name' => 'imce',
|
|
'subnav' => 1,
|
|
'browse' => 1,
|
|
'upload' => 1,
|
|
'thumb' => 0,
|
|
'delete' => 0,
|
|
'resize' => 0,
|
|
'mkdir' => 0,
|
|
'rmdir' => 0,
|
|
),
|
|
),
|
|
'thumbnails' => array(),
|
|
'mkdirnum' => 2,
|
|
),
|
|
);
|
|
$export['imce_profiles'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'imce_roles_profiles';
|
|
$strongarm->value = array(
|
|
4 => array(
|
|
'weight' => '0',
|
|
'public_pid' => '2',
|
|
'private_pid' => '2',
|
|
),
|
|
3 => array(
|
|
'weight' => '1',
|
|
'public_pid' => '2',
|
|
'private_pid' => '2',
|
|
),
|
|
2 => array(
|
|
'weight' => 11,
|
|
'public_pid' => 0,
|
|
'private_pid' => 0,
|
|
),
|
|
1 => array(
|
|
'weight' => 12,
|
|
'public_pid' => 0,
|
|
'private_pid' => 0,
|
|
),
|
|
);
|
|
$export['imce_roles_profiles'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'imce_settings_absurls';
|
|
$strongarm->value = 0;
|
|
$export['imce_settings_absurls'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'imce_settings_disable_private';
|
|
$strongarm->value = 0;
|
|
$export['imce_settings_disable_private'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'imce_settings_replace';
|
|
$strongarm->value = '0';
|
|
$export['imce_settings_replace'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'imce_settings_textarea';
|
|
$strongarm->value = '';
|
|
$export['imce_settings_textarea'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'imce_settings_thumb_method';
|
|
$strongarm->value = 'scale_and_crop';
|
|
$export['imce_settings_thumb_method'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'maintenance_mode_message';
|
|
$strongarm->value = 'Drupal base 7 est en cours de maintenance. Nous serons de retour très bientôt. Merci de votre patience.';
|
|
$export['maintenance_mode_message'] = $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 = 'pathauto_case';
|
|
$strongarm->value = '1';
|
|
$export['pathauto_case'] = $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_ignore_words';
|
|
$strongarm->value = 'a, an, as, at, before, but, by, for, from, is, in, into, like, of, off, on, onto, per, since, than, the, this, that, to, up, via, with, un, une, des, du, de, la, le, les, ou, que, quel, quelle, mais, ou, et, donc, or, ni, car, pas, ne, ce, ces, ça, dans, sur, à, avec, pour, là';
|
|
$export['pathauto_ignore_words'] = $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_max_component_length';
|
|
$strongarm->value = '100';
|
|
$export['pathauto_max_component_length'] = $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_max_length';
|
|
$strongarm->value = '100';
|
|
$export['pathauto_max_length'] = $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_node_pattern';
|
|
$strongarm->value = '[node:content-type:name]/[node:title]';
|
|
$export['pathauto_node_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_punctuation_ampersand';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_ampersand'] = $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_punctuation_asterisk';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_asterisk'] = $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_punctuation_at';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_at'] = $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_punctuation_backtick';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_backtick'] = $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_punctuation_back_slash';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_back_slash'] = $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_punctuation_caret';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_caret'] = $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_punctuation_colon';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_colon'] = $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_punctuation_comma';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_comma'] = $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_punctuation_dollar';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_dollar'] = $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_punctuation_double_quotes';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_double_quotes'] = $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_punctuation_equal';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_equal'] = $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_punctuation_exclamation';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_exclamation'] = $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_punctuation_greater_than';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_greater_than'] = $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_punctuation_hash';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_hash'] = $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_punctuation_hyphen';
|
|
$strongarm->value = '1';
|
|
$export['pathauto_punctuation_hyphen'] = $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_punctuation_left_curly';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_left_curly'] = $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_punctuation_left_parenthesis';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_left_parenthesis'] = $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_punctuation_left_square';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_left_square'] = $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_punctuation_less_than';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_less_than'] = $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_punctuation_percent';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_percent'] = $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_punctuation_period';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_period'] = $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_punctuation_pipe';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_pipe'] = $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_punctuation_plus';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_plus'] = $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_punctuation_question_mark';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_question_mark'] = $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_punctuation_quotes';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_quotes'] = $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_punctuation_right_curly';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_right_curly'] = $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_punctuation_right_parenthesis';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_right_parenthesis'] = $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_punctuation_right_square';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_right_square'] = $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_punctuation_semicolon';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_semicolon'] = $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_punctuation_slash';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_slash'] = $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_punctuation_tilde';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_tilde'] = $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_punctuation_underscore';
|
|
$strongarm->value = '0';
|
|
$export['pathauto_punctuation_underscore'] = $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_reduce_ascii';
|
|
$strongarm->value = 1;
|
|
$export['pathauto_reduce_ascii'] = $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_separator';
|
|
$strongarm->value = '-';
|
|
$export['pathauto_separator'] = $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_transliterate';
|
|
$strongarm->value = 1;
|
|
$export['pathauto_transliterate'] = $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_update_action';
|
|
$strongarm->value = '2';
|
|
$export['pathauto_update_action'] = $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_user_pattern';
|
|
$strongarm->value = 'users/[user:name]';
|
|
$export['pathauto_user_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_verbose';
|
|
$strongarm->value = 0;
|
|
$export['pathauto_verbose'] = $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 = '';
|
|
$export['site_403'] = $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_404';
|
|
$strongarm->value = '';
|
|
$export['site_404'] = $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_frontpage';
|
|
$strongarm->value = 'home';
|
|
$export['site_frontpage'] = $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_mail';
|
|
$strongarm->value = 'dev@g-u-i.net';
|
|
$export['site_mail'] = $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_name';
|
|
$strongarm->value = 'Clameurs';
|
|
$export['site_name'] = $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_offline_message';
|
|
$strongarm->value = 'Kadist Art Fondation is currently under maintenance. We should be back shortly. Thank you for your patience.';
|
|
$export['site_offline_message'] = $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_slogan';
|
|
$strongarm->value = 'La websérie habitée par Laudato si\'';
|
|
$export['site_slogan'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'theme_adaptivetheme_admin_settings';
|
|
$strongarm->value = array(
|
|
'toggle_name' => 1,
|
|
'toggle_favicon' => 1,
|
|
'toggle_main_menu' => 1,
|
|
'toggle_secondary_menu' => 1,
|
|
'default_favicon' => 1,
|
|
'favicon_path' => '',
|
|
'favicon_upload' => '',
|
|
'layout_width' => '1260px',
|
|
'layout_sidebar_first_width' => '240',
|
|
'layout_sidebar_last_width' => '240',
|
|
'layout_method' => '2',
|
|
'layout_enable_settings' => 'on',
|
|
'breadcrumb_display' => 'yes',
|
|
'breadcrumb_separator' => ' » ',
|
|
'breadcrumb_home' => 1,
|
|
'search_snippet' => 1,
|
|
'search_info_type' => 1,
|
|
'search_info_user' => 1,
|
|
'search_info_date' => 1,
|
|
'search_info_comment' => 1,
|
|
'search_info_upload' => 1,
|
|
'search_info_separator' => ' - ',
|
|
'horizontal_login_block' => 1,
|
|
'extra_page_classes' => 0,
|
|
'extra_article_classes' => 0,
|
|
'extra_comment_classes' => 0,
|
|
'extra_block_classes' => 0,
|
|
'extra_menu_classes' => 0,
|
|
'extra_item_list_classes' => 0,
|
|
'menu_item_span_elements' => 0,
|
|
'at__active_tab' => 'edit-page-layout',
|
|
);
|
|
$export['theme_adaptivetheme_admin_settings'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'theme_adaptivetheme_gui_admin_settings';
|
|
$strongarm->value = array(
|
|
'toggle_name' => 1,
|
|
'toggle_favicon' => 1,
|
|
'toggle_main_menu' => 1,
|
|
'toggle_secondary_menu' => 1,
|
|
'default_favicon' => 1,
|
|
'favicon_path' => '',
|
|
'favicon_upload' => '',
|
|
'layout_width' => '1260px',
|
|
'layout_sidebar_first_width' => '240',
|
|
'layout_sidebar_last_width' => '240',
|
|
'layout_method' => '1',
|
|
'layout_enable_settings' => 'on',
|
|
'breadcrumb_display' => 'yes',
|
|
'breadcrumb_separator' => ' » ',
|
|
'breadcrumb_home' => 1,
|
|
'search_snippet' => 1,
|
|
'search_info_type' => 1,
|
|
'search_info_user' => 1,
|
|
'search_info_date' => 1,
|
|
'search_info_comment' => 1,
|
|
'search_info_upload' => 1,
|
|
'search_info_separator' => ' - ',
|
|
'horizontal_login_block' => 0,
|
|
'extra_page_classes' => 0,
|
|
'extra_article_classes' => 0,
|
|
'extra_comment_classes' => 0,
|
|
'extra_block_classes' => 0,
|
|
'extra_menu_classes' => 0,
|
|
'extra_item_list_classes' => 0,
|
|
'menu_item_span_elements' => 0,
|
|
'at__active_tab' => 'edit-page-layout',
|
|
);
|
|
$export['theme_adaptivetheme_gui_admin_settings'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'theme_default';
|
|
$strongarm->value = 'clameurs';
|
|
$export['theme_default'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'theme_settings';
|
|
$strongarm->value = array(
|
|
'toggle_logo' => 0,
|
|
'toggle_name' => 1,
|
|
'toggle_slogan' => 1,
|
|
'toggle_node_user_picture' => 1,
|
|
'toggle_comment_user_picture' => 1,
|
|
'toggle_comment_user_verification' => 1,
|
|
'toggle_favicon' => 1,
|
|
'toggle_main_menu' => 1,
|
|
'toggle_secondary_menu' => 1,
|
|
'default_logo' => 1,
|
|
'logo_path' => '',
|
|
'logo_upload' => '',
|
|
'default_favicon' => 0,
|
|
'favicon_path' => 'sites/all/themes/figureslibres/clameurs/icon.png',
|
|
'favicon_upload' => '',
|
|
'favicon_mimetype' => 'image/png',
|
|
);
|
|
$export['theme_settings'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'user_admin_role';
|
|
$strongarm->value = '4';
|
|
$export['user_admin_role'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'user_mail_register_admin_created_body';
|
|
$strongarm->value = '[user:name],
|
|
|
|
A site administrator at [site:name] has created an account for you. You may now log in by clicking this link or copying and pasting it to your browser:
|
|
|
|
[user:one-time-login-url]
|
|
|
|
This link can only be used once to log in and will lead you to a page where you can set your password.
|
|
|
|
After setting your password, you will be able to log in at [site:login-url] in the future using:
|
|
|
|
username: [user:name]
|
|
password: Your password
|
|
|
|
-- [site:name] team';
|
|
$export['user_mail_register_admin_created_body'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'user_mail_register_admin_created_subject';
|
|
$strongarm->value = 'An administrator created an account for you at [site:name]';
|
|
$export['user_mail_register_admin_created_subject'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'variable_realm_list_language';
|
|
$strongarm->value = array(
|
|
0 => 'site_name',
|
|
1 => 'site_slogan',
|
|
);
|
|
$export['variable_realm_list_language'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_defaults';
|
|
$strongarm->value = array(
|
|
'admin_content' => TRUE,
|
|
'admin_content_node' => TRUE,
|
|
'admin_media' => TRUE,
|
|
'workflow_pending' => TRUE,
|
|
'workflow_summary' => TRUE,
|
|
);
|
|
$export['views_defaults'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_devel_output';
|
|
$strongarm->value = 0;
|
|
$export['views_devel_output'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_devel_region';
|
|
$strongarm->value = 'footer';
|
|
$export['views_devel_region'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_exposed_filter_any_label';
|
|
$strongarm->value = 'new_any';
|
|
$export['views_exposed_filter_any_label'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_localization_plugin';
|
|
$strongarm->value = 'core';
|
|
$export['views_localization_plugin'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_no_javascript';
|
|
$strongarm->value = 0;
|
|
$export['views_no_javascript'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_show_additional_queries';
|
|
$strongarm->value = 0;
|
|
$export['views_show_additional_queries'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_skip_cache';
|
|
$strongarm->value = 1;
|
|
$export['views_skip_cache'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_sql_signature';
|
|
$strongarm->value = 0;
|
|
$export['views_sql_signature'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_ui_always_live_preview';
|
|
$strongarm->value = 1;
|
|
$export['views_ui_always_live_preview'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_ui_show_advanced_column';
|
|
$strongarm->value = 0;
|
|
$export['views_ui_show_advanced_column'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_ui_show_advanced_help_warning';
|
|
$strongarm->value = 1;
|
|
$export['views_ui_show_advanced_help_warning'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_ui_show_listing_filters';
|
|
$strongarm->value = 1;
|
|
$export['views_ui_show_listing_filters'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_ui_show_master_display';
|
|
$strongarm->value = 0;
|
|
$export['views_ui_show_master_display'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_ui_show_performance_statistics';
|
|
$strongarm->value = 0;
|
|
$export['views_ui_show_performance_statistics'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_ui_show_preview_information';
|
|
$strongarm->value = 1;
|
|
$export['views_ui_show_preview_information'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_ui_show_sql_query';
|
|
$strongarm->value = 0;
|
|
$export['views_ui_show_sql_query'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'views_ui_show_sql_query_where';
|
|
$strongarm->value = 'above';
|
|
$export['views_ui_show_sql_query_where'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'workflow_access_priority';
|
|
$strongarm->value = '0';
|
|
$export['workflow_access_priority'] = $strongarm;
|
|
|
|
return $export;
|
|
}
|