You are here

function theme_activity_more_link in Activity 5.3

Same name and namespace in other branches
  1. 5.4 activity.module \theme_activity_more_link()
  2. 6 activity.module \theme_activity_more_link()
2 theme calls to theme_activity_more_link()
activity_block in ./activity.module
create a block for display
buddylistactivity_block in contrib/buddylistactivity/buddylistactivity.module

File

./activity.module, line 731
Activity module: Allow users to see their friends' activity on the site.

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>';
}