You are here

function theme_activity_more_link in Activity 6

Same name and namespace in other branches
  1. 5.4 activity.module \theme_activity_more_link()
  2. 5.3 activity.module \theme_activity_more_link()

Theme function to set customized 'more' link in blocks.

3 theme calls to theme_activity_more_link()
activity_block in ./activity.module
Implementation of hook_block().
ogactivity_block in contrib/ogactivity/ogactivity.module
create a block for display
user_relationshipsactivity_block in contrib/user_relationshipsactivity/user_relationshipsactivity.module
Implementation of hook_block().

File

./activity.module, line 1332
activity.module

Code

function theme_activity_more_link($path) {
  return '<div class="more-link">' . l(t('more'), $path, array(
    'title' => t('See all of your activity.'),
  )) . '</div>';
}