2014-10-28 01:24:59 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implementation of hook_strongarm().
|
|
|
|
*/
|
|
|
|
function internationalization_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 = 'i18nstrings_allowed_formats';
|
|
|
|
$strongarm->value = array(
|
2015-04-16 04:09:58 +00:00
|
|
|
0 => 4,
|
|
|
|
1 => 5,
|
2014-10-28 01:24:59 +00:00
|
|
|
);
|
|
|
|
$export['i18nstrings_allowed_formats'] = $strongarm;
|
|
|
|
|
2014-11-11 05:00:44 +00:00
|
|
|
$strongarm = new stdClass;
|
|
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
|
|
$strongarm->api_version = 1;
|
|
|
|
$strongarm->name = 'i18ntaxonomy_vocabulary';
|
|
|
|
$strongarm->value = array(
|
|
|
|
2 => '1',
|
2015-01-06 03:03:31 +00:00
|
|
|
1 => '0',
|
2014-11-11 05:00:44 +00:00
|
|
|
);
|
|
|
|
$export['i18ntaxonomy_vocabulary'] = $strongarm;
|
|
|
|
|
2014-10-28 01:24:59 +00:00
|
|
|
$strongarm = new stdClass;
|
|
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
|
|
$strongarm->api_version = 1;
|
|
|
|
$strongarm->name = 'language_negotiation';
|
|
|
|
$strongarm->value = '2';
|
|
|
|
$export['language_negotiation'] = $strongarm;
|
|
|
|
|
|
|
|
return $export;
|
|
|
|
}
|