You are here

function flickr_help in Flickr 5

Same name and namespace in other branches
  1. 6 flickr.module \flickr_help()
  2. 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.');
  }
}