You are here

function theme_cctags_more in cctags 6

Same name and namespace in other branches
  1. 7 cctags.module \theme_cctags_more()
1 theme call to theme_cctags_more()
theme_cctags_block in ./cctags.module

File

./cctags.module, line 795

Code

function theme_cctags_more($cctid) {
  $items = _cctags_get_settings($cctid);
  $page_path = $items[0]['page_path'];
  return '<div class="more-link">' . l(t('more tags'), $page_path) . '</div>';
}