public function CommentActivityActionHandler::determineTimestamp in Activity 7
Return the timestamp that this Activity happened at.
Parameters
array $objects: The objects used in tokenization.
Return value
int
Overrides NodeActivityActionHandler::determineTimestamp
File
- ./
activity_action_handlers.inc, line 637
Class
- CommentActivityActionHandler
- Activity handler for the comment module. Extends the node handler has it presents a lot of the same things, just more.
Code
public function determineTimestamp($objects) {
return $objects['comment']->created;
}