1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- function hook_locale($op = 'groups') {
- switch ($op) {
- case 'groups':
- return array('custom' => t('Custom'));
- }
- }
- function hook_multilingual_settings_changed() {
- field_info_cache_clear();
- }
|