function theme_shoutbox_block_page_link in Shoutbox 7.2
Same name and namespace in other branches
- 6.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 164 - Theme callbacks for the shoutbox module.
Code
function theme_shoutbox_block_page_link($variables) {
return '<div class="shoutbox-all-shouts">' . l(t('All ' . DEFAULTSHOUTPLURAL), $variables['path']) . '</div>';
}