features[user_permission][] = "access site-wide contact form"
features[user_permission][] = "access user contact forms"
features[user_permission][] = "administer contact forms"
+features[variable][] = "captcha_default_challenge"
+features[variable][] = "captcha_placement_map_cache"
features[variable][] = "colorbox_caption_trim"
features[variable][] = "colorbox_caption_trim_length"
features[variable][] = "colorbox_compression_type"
function muamba_interface_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 = 'captcha_default_challenge';
+ $strongarm->value = 'image_captcha/Image';
+ $export['captcha_default_challenge'] = $strongarm;
+
+ $strongarm = new stdClass;
+ $strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
+ $strongarm->api_version = 1;
+ $strongarm->name = 'captcha_placement_map_cache';
+ $strongarm->value = array(
+ 'comment_form' => array(
+ 'path' => array(),
+ 'key' => NULL,
+ 'weight' => 18.9,
+ ),
+ 'user_register_form' => array(
+ 'path' => array(
+ 0 => 'actions',
+ ),
+ 'key' => 'submit',
+ 'weight' => NULL,
+ ),
+ 'contact_site_form' => array(
+ 'path' => array(
+ 0 => 'actions',
+ ),
+ 'key' => 'submit',
+ 'weight' => NULL,
+ ),
+ );
+ $export['captcha_placement_map_cache'] = $strongarm;
+
$strongarm = new stdClass;
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
$strongarm->api_version = 1;