You are here

function javascript_aggregator_help in Javascript Aggregator 6

Implementation of hook_help().

File

./javascript_aggregator.module, line 6

Code

function javascript_aggregator_help($path, $arg) {
  switch ($path) {
    case 'admin/help#javascript_aggregator':
      $output = '<p>' . t('Uses the <a href="@jsmin">JSMin</a> library to minify the aggregated JavaScript file when <em>JavaScript optimization</em> has been enabled in the <a href="@performance">Performance settings</a>.', array(
        '@performance' => url('admin/settings/performance'),
        '@jsmin' => 'http://code.google.com/p/jsmin-php/',
      )) . '</p>';
      return $output;
  }
}