You are here

function _i18n_is_bootstrap in Internationalization 5.3

Same name and namespace in other branches
  1. 5 i18n.module \_i18n_is_bootstrap()
  2. 5.2 i18n.module \_i18n_is_bootstrap()
  3. 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 1216
Internationalization (i18n) module

Code

function _i18n_is_bootstrap() {
  return !function_exists('drupal_get_headers');
}