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
29 lines
544 B
Plaintext
29 lines
544 B
Plaintext
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Install, update and uninstall functions for the Commons Media module.
|
|
*/
|
|
|
|
/**
|
|
* Accommodate the latest changes to the Media module.
|
|
*/
|
|
function commons_media_update_7300() {
|
|
$revert = array(
|
|
'commons_media' => array('user_permission', 'variable'),
|
|
);
|
|
features_revert($revert);
|
|
return array();
|
|
}
|
|
|
|
/**
|
|
* Configure File Entity upload wizard settings.
|
|
*/
|
|
function commons_media_update_7301() {
|
|
$revert = array(
|
|
'commons_media' => array('variable'),
|
|
);
|
|
features_revert($revert);
|
|
return array();
|
|
}
|