You are here

function theme_activity_timestamp in Activity 6

Same name and namespace in other branches
  1. 5.4 activity.module \theme_activity_timestamp()

Theme function for timestamp shown in an activity message.

2 theme calls to theme_activity_timestamp()
theme_activity_comments in ./activity.module
Theme function to process activity comments on activity records.
theme_activity_table in ./activity.module
Theme function for displaying a table of activities.

File

./activity.module, line 1376
activity.module

Code

function theme_activity_timestamp($timestamp) {
  return format_date($timestamp, 'small');
}