function flickr_help in Flickr 5
Same name and namespace in other branches
- 6 flickr.module \flickr_help()
- 7 flickr.module \flickr_help()
Implementation of hook_help().
File
- ./
flickr.module, line 9
Code
function flickr_help($section) {
switch ($section) {
case 'admin/settings/flickr':
return t("You will need a Flickr API key to use this module. You can apply for one at <a href='@link'>@link</a>", array(
'@link' => url('http://www.flickr.com/services/api/keys/apply/'),
));
case 'admin/help#flickr':
return t('The flickr module uses XML-RPC to connect to Flickr\'s API and retreive photo information.');
}
}