You are here

function theme_vote_storylink_via in Vote Up/Down 5

Theme the display of (via example.com).

1 theme call to theme_vote_storylink_via()
_phptemplate_variables in ./template.php

File

./vote_storylink.module, line 529

Code

function theme_vote_storylink_via($link_url) {
  $link_url = parse_url($link_url);
  $output = '<div class="vote-up-down-via">(' . t('via @domain', array(
    '@domain' => $link_url['host'],
  )) . ')</div>';
  return $output;
}