function flickr_block_help in Flickr 7
Same name and namespace in other branches
- 6 block/flickr_block.module \flickr_block_help()
Implements hook_help().
File
- block/
flickr_block.module, line 13 - The Flickr block module
Code
function flickr_block_help($path, $arg) {
switch ($path) {
case 'admin/help#flickr_block':
// Return a line-break version of the README.txt.
return _filter_autop(file_get_contents(dirname(__FILE__) . '/README.txt'));
}
}