function flickr_sets_help in Flickr 7
Implements hook_help().
File
- sets/
flickr_sets.module, line 13 - The Flickr sets module.
Code
function flickr_sets_help($path, $arg) {
switch ($path) {
case 'admin/help#flickr_sets':
// Return a line-break version of the README.txt.
return _filter_autop(file_get_contents(dirname(__FILE__) . '/README.txt'));
}
}