You are here

function varbase_editor_defaultconfig_strongarm in Varbase Editor 7.3

Implements hook_defaultconfig_strongarm().

File

./varbase_editor.features.defaultconfig.inc, line 21
varbase_editor.features.defaultconfig.inc

Code

function varbase_editor_defaultconfig_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 = 'filter_fallback_format';
  $strongarm->value = 'plain_text';
  $export['filter_fallback_format'] = $strongarm;
  $strongarm = new stdClass();
  $strongarm->disabled = FALSE;

  /* Edit this to true to make a default strongarm disabled initially */
  $strongarm->api_version = 1;
  $strongarm->name = 'media_icon_base_directory';
  $strongarm->value = 'public://media-icons';
  $export['media_icon_base_directory'] = $strongarm;
  return $export;
}