You are here

function cf_http_init in Common Functionality 7.2

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

Implements hook_init().

Related topics

File

modules/cf_http/cf_http.module, line 26
Common Functionality - HTTP module.

Code

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