You are here

public function ActivityActionHandler::determineTimestamp in Activity 7

Return the timestamp that this Activity happened at.

Parameters

array $objects: The objects used in tokenization.

Return value

int

2 methods override ActivityActionHandler::determineTimestamp()
NodeActivityActionHandler::determineTimestamp in ./activity_action_handlers.inc
Return the timestamp that this Activity happened at.
UserActivityActionHandler::determineTimestamp in ./activity_action_handlers.inc
Return the timestamp that this Activity happened at.

File

./activity_action_handlers.inc, line 319

Class

ActivityActionHandler

Code

public function determineTimestamp($objects) {
  return REQUEST_TIME;
}