function translation_test_boot

Implements hook_boot().

File

drupal/core/modules/translation/tests/translation_test.module, line 20
Mock module for content translation tests.

Code

function translation_test_boot() {

  // We run the t() function during hook_boot() to make sure it doesn't break
  // the boot process.
  $translation = t("Calling the t() process during @boot.", array(
    '@boot' => 'hook_boot()',
  ));
}