function flowplayer_help in SWF Tools 6
Same name and namespace in other branches
- 6.2 flowplayer/flowplayer.module \flowplayer_help()
Implementation of hook_help
File
- flowplayer/
flowplayer.module, line 339
Code
function flowplayer_help($path, $arg) {
switch ($path) {
case 'admin/settings/swftools/flowplayer':
return '<p>' . t('These are the settings for the FlowPlayer media player.
For details of what each parameter does refer to the
<a href="@flowplayer">FlowPlayer documentation</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 configuration setting name and corresponds to the documentation 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(
'@flowplayer' => 'http://flowplayer.org/player/configuration.html',
)) . '</p>';
}
}