You are here

commons_events_pages.strongarm.inc in Drupal Commons 7.3

File

modules/commons/commons_events/modules/commons_events_pages/commons_events_pages.strongarm.inc
View source
<?php

/**
 * @file
 * commons_events_pages.strongarm.inc
 */

/**
 * Implements hook_strongarm().
 */
function commons_events_pages_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 = 'panelizer_defaults_node_event';
  $strongarm->value = array(
    'status' => 1,
    'view modes' => array(
      'page_manager' => array(
        'status' => 1,
        'default' => 1,
        'choice' => 0,
      ),
      'default' => array(
        'status' => 0,
        'default' => 0,
        'choice' => 0,
      ),
      'teaser' => array(
        'status' => 0,
        'default' => 0,
        'choice' => 0,
      ),
    ),
  );
  $export['panelizer_defaults_node_event'] = $strongarm;
  return $export;
}

Functions

Namesort descending Description
commons_events_pages_strongarm Implements hook_strongarm().