public function CommentActivityActionHandler::determineActor in Activity 7
Return the uid that is responsible for this action.
Parameters
array $objects: The objects used in tokenization
Return value
int
Overrides NodeActivityActionHandler::determineActor
File
- ./
activity_action_handlers.inc, line 625
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 determineActor($objects) {
return $objects['comment']->uid;
}