Same name and namespace in other branches
  1. 7.x-2.x colorbox.module \colorbox_init() 1 comment

Implements hook_init().

File

./colorbox.module, line 56

Code

function colorbox_init() {
    // Do not load colorbox during the Drupal installation process, e.g. if part
    // of installation profiles.
    if (!drupal_installation_attempted()) {
        _colorbox_doheader();
    }
}