You are here

function swftools_imagerotator_help in SWF Tools 6.3

Implementation of hook_help

File

imagerotator/swftools_imagerotator.module, line 283
Enables SWF Tools support for the LongTail ImageRotator.

Code

function swftools_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>';
  }
}