You are here

function mcd_init in Maintenance Countdown 7

Same name and namespace in other branches
  1. 6 mcd.module \mcd_init()

Implements of hook_init().

File

./mcd.module, line 67
mcd.module

Code

function mcd_init() {
  if (arg(0) == 'admin' && arg(3) == 'maintenance') {
    drupal_add_css(drupal_get_path('module', 'mcd') . '/mcd.css', array(
      'type' => 'file',
      'every_page' => FALSE,
      'preprocess' => FALSE,
    ));
  }
}