You are here

commons_home.strongarm.inc in Drupal Commons 6.2

File

modules/features/commons_home/commons_home.strongarm.inc
View source
<?php

/**
 * Implementation of hook_strongarm().
 */
function commons_home_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 = 'site_frontpage';
  $strongarm->value = 'home';
  $export['site_frontpage'] = $strongarm;
  return $export;
}

Functions

Namesort descending Description
commons_home_strongarm Implementation of hook_strongarm().