You are here

function autofloat_help in AutoFloat 6.2

Same name and namespace in other branches
  1. 6 autofloat.module \autofloat_help()
  2. 7.2 autofloat.module \autofloat_help()
  3. 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'));
  }
}