Skip to content

Commit

Permalink
Export mollom config.
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorentTorregrosa committed Apr 22, 2017
1 parent ac6173c commit 4284e72
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,13 @@ features[variable][] = l10n_update_check_mode
features[variable][] = l10n_update_download_store
features[variable][] = l10n_update_import_mode
features[variable][] = mollom_audio_captcha_enabled
features[variable][] = mollom_connection_timeout
features[variable][] = mollom_fai_dialog
features[variable][] = mollom_fai_entity_types
features[variable][] = mollom_fallback
features[variable][] = mollom_fba_enabled
features[variable][] = mollom_languages_expected
features[variable][] = mollom_log_minimum_severity
features[variable][] = mollom_privacy_link
features[variable][] = mollom_private_key
features[variable][] = mollom_public_key
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -536,13 +536,60 @@ Avancé<br/>
$strongarm->value = 1;
$export['mollom_audio_captcha_enabled'] = $strongarm;

$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'mollom_connection_timeout';
$strongarm->value = '3';
$export['mollom_connection_timeout'] = $strongarm;

$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'mollom_fai_dialog';
$strongarm->value = 'mollom';
$export['mollom_fai_dialog'] = $strongarm;

$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'mollom_fai_entity_types';
$strongarm->value = array(
'comment' => 'comment',
'node' => 'node',
);
$export['mollom_fai_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 = 'mollom_fallback';
$strongarm->value = '0';
$export['mollom_fallback'] = $strongarm;

$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'mollom_fba_enabled';
$strongarm->value = 0;
$export['mollom_fba_enabled'] = $strongarm;

$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'mollom_languages_expected';
$strongarm->value = array(
'languageCode' => 'fr',
);
$export['mollom_languages_expected'] = $strongarm;

$strongarm = new stdClass();
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;
$strongarm->name = 'mollom_log_minimum_severity';
$strongarm->value = '4';
$export['mollom_log_minimum_severity'] = $strongarm;

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

0 comments on commit 4284e72

Please sign in to comment.