You are here

function css_gzip_help in CSS Gzip 6

Implementation of hook_help().

Parameters

$path: A Drupal menu router path the help is being requested fo

$arg: An array that corresponds to the return of the arg() function

File

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

Code

function css_gzip_help($path, $arg) {
  switch ($path) {
    case 'admin/help#css_gzip':
      $output = '<p>' . t('Option to gzip the aggregated CSS file when <em>CSS optimization</em> has been enabled in the <a href="@performance">Performance settings</a>. Requires .htaccess mod_rewrite (apache web server & clean urls).', array(
        '@performance' => url('admin/settings/performance'),
      )) . '</p>';
      return $output;
  }
}