You are here

panopoly_core.strongarm.inc in Panopoly Core 7

File

panopoly_core.strongarm.inc
View source
<?php

/**
 * @file
 * panopoly_core.strongarm.inc
 */

/**
 * Implements hook_strongarm().
 */
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;
}

Functions

Namesort descending Description
panopoly_core_strongarm Implements hook_strongarm().