You are here

function activity_handler_batchable_load in Activity 7

Load a batchable Activity Handler from an aid.

Parameters

$aid: {actions}.aid that holds the configuration information.

1 call to activity_handler_batchable_load()
activity_batch_regenerate_step in ./activity.batch.inc
Batch regeneration step.

File

./activity.module, line 178
Records Activity across the site and surfaces that to Views.

Code

function activity_handler_batchable_load($aid) {
  $handler = activity_handler_load($aid);
  if (!empty($handler) && $handler->batch) {
    return $handler;
  }
  return FALSE;
}