function theme_cctags_more in cctags 7
Same name and namespace in other branches
- 6 cctags.module \theme_cctags_more()
1 theme call to theme_cctags_more()
File
- ./
cctags.module, line 612
Code
function theme_cctags_more($variables) {
$cctid = $variables['cctid'];
$items = _cctags_get_settings($cctid);
$page_path = $items[$cctid]['page_path'];
return theme('more_link', array(
'class' => 'cctags-more-tags',
'title' => t('more tags'),
'url' => $page_path,
));
}