You are here

function panopoly_core_strongarm in Panopoly Core 7

Implements hook_strongarm().

File

./panopoly_core.strongarm.inc, line 10
panopoly_core.strongarm.inc

Code

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

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

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

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

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

  /* Edit this to true to make a default strongarm disabled initially */
  $strongarm->api_version = 1;
  $strongarm->name = 'panelizer_taxonomy_term:panopoly_categories:featured_selection';
  $strongarm->value = 'taxonomy_term:panopoly_categories:default:featured';
  $export['panelizer_taxonomy_term:panopoly_categories:featured_selection'] = $strongarm;
  $strongarm = new stdClass();
  $strongarm->disabled = FALSE;

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

  /* Edit this to true to make a default strongarm disabled initially */
  $strongarm->api_version = 1;
  $strongarm->name = 'panelizer_taxonomy_term:panopoly_categories_allowed_layouts_default';
  $strongarm->value = 1;
  $export['panelizer_taxonomy_term:panopoly_categories_allowed_layouts_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 = 'panelizer_taxonomy_term:panopoly_categories_allowed_types_default';
  $strongarm->value = 1;
  $export['panelizer_taxonomy_term:panopoly_categories_allowed_types_default'] = $strongarm;
  return $export;
}