You are here

function instagram_feeds_api_tokens_info in Instagram Feeds 7

Implements hook_api_tokens_info().

File

./instagram_feeds.module, line 938

Code

function instagram_feeds_api_tokens_info() {
  $tokens = array();
  $tokens['instagram'] = array(
    'title' => t('Instagram'),
    'description' => t('Renders Instagram block.'),
  );
  return $tokens;
}