You are here

function imagerotator_help in SWF Tools 6.2

Same name and namespace in other branches
  1. 6 imagerotator/imagerotator.module \imagerotator_help()

Implementation of hook_help

File

imagerotator/imagerotator.module, line 262

Code

function imagerotator_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/swftools/imagerotator':
      return '<p>' . t('These are the settings for Jeroen Wijering\'s imagerotator.swf
                      and correspond (by category and order) to the
                      <a href="@imagerotator">Media Player and Image Rotator read me</a>.
                      It is possible that you do not need to change any of
                      these settings and blank values will defer to friendly
                      defaults. Note that the label in (<em>brackets</em>)
                      is the actual flashvar name and corresponds to the read me.', array(
        '@imagerotator' => 'http://jeroenwijering.com/extras/readme.html',
      )) . '</p>';
  }
}