drupal/core/modules/translation/translation.install

28 lines
520 B
Plaintext
Raw Normal View History

<?php
/**
* @file
* Update function for the translation module.
*/
/**
* Rename the translate content permission.
*/
function translation_update_8000() {
update_replace_permissions(array(
'translate content' => array('translate all content'),
));
}
/**
* Moves "translation_language_type" from variable to config.
*
* @ingroup config_upgrade
*/
function translation_update_8001() {
update_variables_to_config('translation.settings', array(
'translation_language_type' => 'language_type',
));
}