features[variable][] = "site_name"
features[variable][] = "theme_default"
features[variable][] = "theme_settings"
+features[variable][] = "user_picture_default"
+features[variable][] = "user_picture_dimensions"
+features[variable][] = "user_picture_file_size"
+features[variable][] = "user_picture_guidelines"
+features[variable][] = "user_picture_path"
+features[variable][] = "user_picture_style"
features[views_view][] = "muambas"
features[views_view][] = "og_list"
features[views_view][] = "transacoes"
);
$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_picture_default';
+ $strongarm->value = 'sites/muamba/modules/muamba/images/lego.png';
+ $export['user_picture_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 = 'user_picture_dimensions';
+ $strongarm->value = '1024x1024';
+ $export['user_picture_dimensions'] = $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_picture_file_size';
+ $strongarm->value = '800';
+ $export['user_picture_file_size'] = $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_picture_guidelines';
+ $strongarm->value = '';
+ $export['user_picture_guidelines'] = $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_picture_path';
+ $strongarm->value = 'pictures';
+ $export['user_picture_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 = 'user_picture_style';
+ $strongarm->value = 'thumbnail';
+ $export['user_picture_style'] = $strongarm;
+
return $export;
}