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