function autofloat_help in AutoFloat 6
Same name and namespace in other branches
- 6.2 autofloat.module \autofloat_help()
- 7.2 autofloat.module \autofloat_help()
- 7 autofloat.module \autofloat_help()
Implements hook_help().
File
- ./
autofloat.module, line 10 - Autofloat module: A filter that floats images left and right automatically.
Code
function autofloat_help($path, $arg) {
switch ($path) {
case 'admin/help#autofloat':
// Return a line-break version of the README.txt.
return _filter_autop(file_get_contents(dirname(__FILE__) . '/README.txt'));
}
}