You are here

function _i18n_is_bootstrap in Internationalization 6

Same name and namespace in other branches
  1. 5.3 i18n.module \_i18n_is_bootstrap()
  2. 5 i18n.module \_i18n_is_bootstrap()
  3. 5.2 i18n.module \_i18n_is_bootstrap()

Check whether we are in bootstrap mode.

1 call to _i18n_is_bootstrap()
i18n_init in ./i18n.module
Implementation of hook_init().

File

./i18n.module, line 806
Internationalization (i18n) module.

Code

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