You are here

function css_gzip_init in CSS Gzip 6

Implementation of hook_init().

Start the output buffer.

File

./css_gzip.module, line 91
Gzips aggregated CSS files if CSS Optimization is turned on.

Code

function css_gzip_init() {
  if (variable_get('css_gzip', FALSE) && variable_get('css_gzip_exit', FALSE)) {
    ob_start();
  }
}