You are here

public function ActivityActionHandler::determineActor in Activity 7

Return the uid that is responsible for this action.

Parameters

array $objects: The objects used in tokenization

Return value

int

2 methods override ActivityActionHandler::determineActor()
NodeActivityActionHandler::determineActor in ./activity_action_handlers.inc
Return the uid that is responsible for this action.
UserActivityActionHandler::determineActor in ./activity_action_handlers.inc
Return the uid that is responsible for this action.

File

./activity_action_handlers.inc, line 307

Class

ActivityActionHandler

Code

public function determineActor($objects) {
  return $GLOBALS['user']->uid;
}