function i18n_path_update_7000 in Internationalization 7
Set module weight.
File
- i18n_path/
i18n_path.install, line 85 - Install, update and uninstall functions for the text module.
Code
function i18n_path_update_7000(&$sandbox) {
// Set module weight for it to run after core modules, but before views.
db_update('system')
->fields(array(
'weight' => 5,
))
->condition('name', 'i18n_path', '=')
->condition('type', 'module', '=')
->execute();
}