function enterprise_base_strongarm in Enterprise Base 7.3
Same name and namespace in other branches
- 7 enterprise_base.strongarm.inc \enterprise_base_strongarm()
Implements hook_strongarm().
File
Code
function enterprise_base_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 = 'date_format_day';
$strongarm->value = 'F jS, Y';
$export['date_format_day'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'date_format_long';
$strongarm->value = 'l, F j, Y - H:i';
$export['date_format_long'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'date_format_medium';
$strongarm->value = 'D, Y-m-d H:i';
$export['date_format_medium'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'date_format_short';
$strongarm->value = 'Y-m-d H:i';
$export['date_format_short'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'date_format_time';
$strongarm->value = 'g:i a';
$export['date_format_time'] = $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_compression_type';
$strongarm->value = 'min';
$export['jquery_update_compression_type'] = $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_admin_version';
$strongarm->value = '1.7';
$export['jquery_update_jquery_admin_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 = 'jquery_update_jquery_cdn';
$strongarm->value = 'google';
$export['jquery_update_jquery_cdn'] = $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.8';
$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 = 'luxe_login_register_form';
$strongarm->value = 1;
$export['luxe_login_register_form'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'luxe_login_register_intro';
$strongarm->value = '';
$export['luxe_login_register_intro'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'luxe_login_register_title';
$strongarm->value = 'Don\'t have an Account?';
$export['luxe_login_register_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 = 'luxe_login_title';
$strongarm->value = 'Login';
$export['luxe_login_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 = 'luxe_recover_text';
$strongarm->value = 'Forgot your password?';
$export['luxe_recover_text'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'luxe_recover_title';
$strongarm->value = 'Forgot your password?';
$export['luxe_recover_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 = 'luxe_register_mail_description';
$strongarm->value = '';
$export['luxe_register_mail_description'] = $strongarm;
$strongarm = new stdClass();
$strongarm->disabled = FALSE;
/* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'luxe_register_title';
$strongarm->value = 'Sign up';
$export['luxe_register_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 = 'luxe_register_username_description';
$strongarm->value = '';
$export['luxe_register_username_description'] = $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_tags_pattern';
$strongarm->value = '[term:vocabulary]/[term:name]';
$export['pathauto_taxonomy_term_tags_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 = 'realname_pattern';
$strongarm->value = '[user:field_firstname] [user:field_lastname]';
$export['realname_pattern'] = $strongarm;
return $export;
}