New module 'Internationalization'
This commit is contained in:
parent
e997e7a20c
commit
003589f73e
47 changed files with 8417 additions and 0 deletions
16
sites/all/modules/i18n/i18nsync/i18nsync.install
Normal file
16
sites/all/modules/i18n/i18nsync/i18nsync.install
Normal file
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* @file
|
||||
* Installation file for i18nsync module.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Set module weight.
|
||||
*
|
||||
* Make sure this runs after taxonomy, i18n and translation modules
|
||||
* and ideally after all other modules implementing nodeapi hook.
|
||||
*/
|
||||
function i18nsync_install() {
|
||||
db_query("UPDATE {system} SET weight = 100 WHERE name = 'i18nsync' AND type = 'module'");
|
||||
}
|
Reference in a new issue