function theme_shoutbox_block_page_link in Shoutbox 6.2
Same name and namespace in other branches
- 7.2 shoutbox.theme.inc \theme_shoutbox_block_page_link()
- 7 shoutbox.theme.inc \theme_shoutbox_block_page_link()
Theme the link on the bottom of the block pointing to the shout page
Parameters
$page_path: Path to the shout page
1 theme call to theme_shoutbox_block_page_link()
- shoutbox_view in ./
shoutbox.module - View the shoutbox
File
- ./
shoutbox.theme.inc, line 156 - Theme callbacks for the shoutbox module.
Code
function theme_shoutbox_block_page_link($page_path) {
return '<div class="shoutbox-all-shouts">' . l(t('All shouts'), $page_path) . '</div>';
}