function _i18n_is_bootstrap in Internationalization 5.2
Same name and namespace in other branches
- 5.3 i18n.module \_i18n_is_bootstrap()
- 5 i18n.module \_i18n_is_bootstrap()
- 6 i18n.module \_i18n_is_bootstrap()
Check whether we are in bootstrap mode
2 calls to _i18n_is_bootstrap()
- i18n_get_normal_path in ./
i18n.module - This function is similar to drupal_get_normal_path, but language-aware Also removes language from path
- i18n_init in ./
i18n.module - Implementation of hook_init()
File
- ./
i18n.module, line 1188 - Internationalization (i18n) module
Code
function _i18n_is_bootstrap() {
return !function_exists('drupal_get_headers');
}