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
43 lines
1.4 KiB
PHP
43 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* @file
|
|
* commons_media.strongarm.inc
|
|
*/
|
|
|
|
/**
|
|
* Implements hook_strongarm().
|
|
*/
|
|
function commons_media_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 = 'file_entity_file_upload_wizard_skip_fields';
|
|
$strongarm->value = 0;
|
|
$export['file_entity_file_upload_wizard_skip_fields'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'file_entity_file_upload_wizard_skip_file_type';
|
|
$strongarm->value = 1;
|
|
$export['file_entity_file_upload_wizard_skip_file_type'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'file_entity_file_upload_wizard_skip_scheme';
|
|
$strongarm->value = 1;
|
|
$export['file_entity_file_upload_wizard_skip_scheme'] = $strongarm;
|
|
|
|
$strongarm = new stdClass();
|
|
$strongarm->disabled = FALSE; /* Edit this to true to make a default strongarm disabled initially */
|
|
$strongarm->api_version = 1;
|
|
$strongarm->name = 'media_dialog_theme';
|
|
$strongarm->value = 'ember';
|
|
$export['media_dialog_theme'] = $strongarm;
|
|
|
|
return $export;
|
|
}
|