You are here

function flickr_help in Flickr 6

Same name and namespace in other branches
  1. 5 flickr.module \flickr_help()
  2. 7 flickr.module \flickr_help()

Implements hook_help().

File

./flickr.module, line 8

Code

function flickr_help($path, $arg) {
  switch ($path) {
    case 'admin/help#flickr':

      // Return a line-break version of the README.txt.
      return _filter_autop(file_get_contents(dirname(__FILE__) . '/README.txt'));
  }
}