function flickr_help in Flickr 7
Same name and namespace in other branches
- 5 flickr.module \flickr_help()
- 6 flickr.module \flickr_help()
Implements hook_help().
File
- ./
flickr.module, line 13 - The Flickr module.
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'));
}
}