public function ActivityActionHandler::listEids in Activity 7
List all eids for this handler, used for batch regeneration and backfilling.
Parameters
int $offset: The offset for the query.
int $limit: The limit for the query.
2 methods override ActivityActionHandler::listEids()
- NodeActivityActionHandler::listEids in ./
activity_action_handlers.inc - List all eids for this handler, used for batch regeneration and backfilling.
- UserActivityActionHandler::listEids in ./
activity_action_handlers.inc - List all eids for this handler, used for batch regeneration and backfilling.
File
- ./
activity_action_handlers.inc, line 352
Class
Code
public function listEids($offset, $limit) {
return array(
'total' => 0,
'arguments' => array(),
);
}