8ac59801be
Update commons modules to release 7.12, and move the codebase under modules/commons instead of constant fetching from remote repository. The commons.make file removed so it is not required to rebuild groups distribution. Change-Id: I3be393ba1af34427e2915b18ab1ad718fd4e54db
22 lines
467 B
PHP
22 lines
467 B
PHP
<?php
|
|
/**
|
|
* @file
|
|
* commons_site_homepage.strongarm.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_strongarm().
|
|
*/
|
|
function commons_site_homepage_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;
|
|
}
|