function googtube_help in Googtube 7.2
Same name and namespace in other branches
- 5 googtube.module \googtube_help()
- 6.2 googtube.module \googtube_help()
- 6 googtube.module \googtube_help()
- 7 googtube.module \googtube_help()
File
- ./
googtube.module, line 4
Code
function googtube_help($path, $arg) {
switch ($path) {
case 'admin/help#googtube':
$output = '<p>' . t('Googtube is a filter module that automatically converts Youtube and Vimeo video urls into embedded code. Useful if users want to post videos easily.') . '</p>';
$output .= t('<p>Use Input Formats to enable the googtube filter</p>
<ol>
<li>Select an existing Input Format or add a new one</li>
<li>Configure the Input Format</li>
<li>Enable googtube filter and Save configuration</li>
<li>Rearrange the weight of the googtube filter depending on what filters exist in the format. (Before Url Filter and after HTML works for me)</li>
</ol>');
$output .= '<p>' . t('You can enable the googtube filter in an input format from <a href="/admin/config/content/formats" />admin/config/content/formats</a>') . '</p>';
return $output;
}
}