You are here

function _twitter_filter_tip_hashtag in Twitter 7.4

Same name and namespace in other branches
  1. 7.6 twitter.module \_twitter_filter_tip_hashtag()
  2. 7.3 twitter.module \_twitter_filter_tip_hashtag()
  3. 7.5 twitter.module \_twitter_filter_tip_hashtag()

Filter tips callback function for Twitter hashtags.

1 string reference to '_twitter_filter_tip_hashtag'
twitter_filter_info in ./twitter.module
Implements hook_filter_info().

File

./twitter.module, line 217
Provides API integration with the Twitter microblogging service.

Code

function _twitter_filter_tip_hashtag($format, $long = FALSE) {
  return t('Twitter-style #hashtags are linked to !url.', array(
    '!url' => '<a href="http://search.twitter.com/">search.twitter.com</a>',
  ));
}