1 bootstrap.inc bootstrap_hooks()

Defines the critical hooks that force modules to always be loaded.

Return value

array:

File

core/includes/bootstrap.inc, line 1942
Functions that need to be loaded on every Backdrop request.

Code

function bootstrap_hooks() {
  return array(
    'boot',
    'exit',
    'watchdog',
    'language_init',
    'language_negotiation_info',
    'language_negotiation_info_alter',
    'language_types_info',
    'language_types_info_alter',
  );
}