You are here

function css_emimage_help in CSS Embedded Images 6.2

Same name and namespace in other branches
  1. 6 css_emimage.module \css_emimage_help()
  2. 7 css_emimage.module \css_emimage_help()

Implementation of hook_help().

File

./css_emimage.module, line 28
CSS Embedded Images module.

Code

function css_emimage_help($path, $arg) {
  switch ($path) {
    case 'admin/help#css_emimage':
      $output = '<p>' . t('Replaces image URLs in aggregated CSS files with embedded images when <em>CSS optimization</em> has been enabled in the <a href="@performance">Performance settings</a>.', array(
        '@performance' => url('admin/settings/performance'),
      )) . '</p>';
      return $output;
  }
}