locale_module_preuninstall($module)
Implements hook_module_preuninstall().
File
- core/modules/locale/locale.module, line 325
- Enables the translation of the user interface to languages other than English.
Code
1 2 3 4 | function locale_module_preuninstall( $module ) { $components [ 'module' ] = array ( $module ); locale_system_remove( $components ); } |
Please login to continue.