File: boot_test_1.module

package info (click to toggle)
drupal7 7.52-2%2Bdeb9u11
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 21,756 kB
  • sloc: php: 44,022; pascal: 42,649; javascript: 31,405; sh: 1,685; xml: 466; makefile: 21; sql: 1
file content (21 lines) | stat: -rw-r--r-- 550 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

/**
 * @file
 * Tests calling module_implements() during hook_boot() invocation.
 */

/**
 * Implements hook_boot().
 */
function boot_test_1_boot() {
  // Calling module_implements during hook_boot() will return "vital" modules
  // only, and this list of modules will be statically cached.
  module_implements('help');
  // Define a special path to test that the static cache isn't written away
  // if we exit before having completed the bootstrap.
  if ($_GET['q'] == 'early_exit') {
    module_implements_write_cache();
    exit();
  }
}