You are here

public function CommentActivityActionHandler::determineEid in Activity 7

Return the eid field for this Activity.

Parameters

array $context: The context arguments passed into the action callback.

Return value

int

Overrides NodeActivityActionHandler::determineEid

File

./activity_action_handlers.inc, line 613

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 determineEid($context) {
  return $context['comment']->cid;
}