function theme_hds_created_time_medium in Heartbeat 6.4
Formatter for the time ago created display
File
- modules/
hds/ hds.module, line 281 - Heartbeat displays module.
Code
function theme_hds_created_time_medium($heartbeatactivity) {
return '<span class="heartbeat_times">' . format_date($_SERVER['REQUEST_TIME'] - $heartbeatactivity['object']->timestamp, 'medium') . '</span>';
}