You are here

function theme_tagadelic_more in Tagadelic 5

Same name and namespace in other branches
  1. 6 tagadelic.module \theme_tagadelic_more()

theme function to provide a more link

Parameters

$vid - vocab id for which more link is wanted:

1 theme call to theme_tagadelic_more()
tagadelic_block in ./tagadelic.module
implementation of hook_block

File

./tagadelic.module, line 330

Code

function theme_tagadelic_more($vid) {
  return "<div class='more-link'>" . l(t('more tags'), "tagadelic/chunk/{$vid}") . "</div>";
}