You are here

function minify_help in Minify 7

Implements hook_help().

File

./minify.module, line 6

Code

function minify_help($path, $arg) {
  switch ($path) {
    case 'admin/config/development/performance/minifyjs':
      $output = '<p>' . t('This is a simple module that provides the mechanism to minify JavaScript files, ');
      $output .= t('which ultimately reduces the file size and load time.') . '</p>';
      $output .= '<p>' . t('In <b>Operations</b> column,<br /><b>Minify</b> => Generate the minified version,<br />');
      $output .= t('<b>Refresh</b> => Refresh/regenerate the minified version,<br />');
      $output .= t('<b>Revert</b> => Delete the minified file and use original file.') . '</p>';
      $output .= '<p>' . t('In <b>Status</b> column,<br />');
      $output .= t('<span class="marker">Need to refresh</span> => Original file is updated, click Refresh to update minified file.') . '</p>';
      return $output;
  }
}