You are here

function theme_activity_timestamp in Activity 5.4

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

Theme function for timestamp shown in an activity message.

1 theme call to theme_activity_timestamp()
theme_activity_table in ./activity.module
Theme function for displaying a table of activities.

File

./activity.module, line 1050
activity.module

Code

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