You are here

function social_content_twitter_filtertip_hashtag in Social Content 7.2

Same name and namespace in other branches
  1. 7 modules/twitter/social_content_twitter.filters.inc \social_content_twitter_filtertip_hashtag()

Filter tips callback function for Twitter hashtags.

1 string reference to 'social_content_twitter_filtertip_hashtag'
social_content_twitter_filter_info in modules/twitter/social_content_twitter.filters.inc
Implements hook_filter_info().

File

modules/twitter/social_content_twitter.filters.inc, line 85
Filters and text formats for Social Content: Twitter.

Code

function social_content_twitter_filtertip_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>',
  ));
}