You are here

function socialmedia_util_pattern in Social media 7

1 string reference to 'socialmedia_util_pattern'
socialmedia_menu in ./socialmedia.module
Implements hook_menu().

File

./socialmedia.module, line 247
Demonstrate basic module socialmedia.

Code

function socialmedia_util_pattern() {
  $str = <<<EOF
Twitter url: [socialmedia:twitter_url]
Twitter @username: [socialmedia:twitter_amp-username]

EOF;
  $output = $str;
  $output .= "<br /><br />";
  $output .= token_replace($str);
  return $output;
}