You are here

function cf_http_init in Common Functionality 7

Same name and namespace in other branches
  1. 7.2 modules/cf_http/cf_http.module \cf_http_init()

Implements hook_init().

File

modules/cf_http/cf_http.module, line 6

Code

function cf_http_init() {
  static $cf_http_html_headers = FALSE;
  if (!$cf_http_html_headers) {
    drupal_add_css(drupal_get_path('module', 'cf_http') . '/includes/cf_http_html_headers.css');
    $cf_http_html_headers = TRUE;
  }
}