You are here

function swftools_jw5_help in SWF Tools 6.3

Implementation of hook_help().

File

jw5/swftools_jw5.module, line 332
Enables SWF Tools support for LongTail Player 5.

Code

function swftools_jw5_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/swftools/jw5':
      return '<p>' . t('These are the settings for Longtail Video\'s JW Player 5. For details of what each parameter does refer to the <a href="@wijering">JW Player for Flash wiki page</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 wiki page. If content is embedded using the SWF Tools filter then each parameter can be over-ridden by specifying a new value in the filter string.', array(
        '@wijering' => 'http://www.longtailvideo.com/support/jw-player/jw-player-for-flash-v5/12536/configuration-options',
      )) . '</p>';
  }
}