You are here

function swftools_flowplayer3_help in SWF Tools 6.3

Implementation of hook_help().

File

flowplayer3/swftools_flowplayer3.module, line 464
Enables SWF Tools support for Flowplayer 3.

Code

function swftools_flowplayer3_help($path, $arg) {
  switch ($path) {
    case 'admin/settings/swftools/flowplayer3':
      return '<p>' . t('These are the settings for the Flowplayer 3 media player.
                      For details of what each parameter does refer to the
                      <a href="@flowplayer">Flowplayer 3 documentation</a>.
                      It is possible that you do not need to change any of
                      these settings and blank values will use Flowplayer
                      defaults.
                      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(
        '@flowplayer' => 'http://flowplayer.org/documentation/configuration',
      )) . '</p>';
  }
}