You are here

function media_flickr_help in Media: Flickr 7.2

Implements hook_help().

File

./media_flickr.module, line 72
Provides a stream wrapper and formatters appropriate for accessing and displaying Flickr images.

Code

function media_flickr_help($path, $arg) {
  if ($path === 'admin/config/media/media-flickr') {
    return '<p>' . t('In order to add and display images from Flickr you first need to apply for an API Developer Key from the <a href="@flickr" target="_blank">Flickr Developer Profile page</a>.', array(
      '@flickr' => MEDIA_FLICKR_API_APPLICATION_URL,
    )) . '</p>';
  }
  return '';
}