You are here

function filebrowser_help in Filebrowser 5

Implementation of hook_help().

1 call to filebrowser_help()
filebrowser_get_fileinfo in ./filebrowser.module
Loads file metainformation from the specified file. Also allows the file to specify a *callback* with which the descriptions are parsed, so more metainformation can be presented on the output.

File

./filebrowser.module, line 6

Code

function filebrowser_help($section = NULL, $sethelp = NULL) {
  static $pagehelp = '';
  if (!isset($section)) {
    $pagehelp = $sethelp;
  }
  elseif ($section == $_GET['q'] && $pagehelp) {
    return $pagehelp;
  }
}