actually do bulk actions from CLI

This commit is contained in:
Shish 2020-02-02 17:00:33 +00:00
parent 7cf5c2a28c
commit 9d704183c7

View file

@ -104,11 +104,11 @@ class BulkActions extends Extension
if (count($event->args) < 2) {
return;
}
$query = $event->args[0];
$items = $this->yield_search_results($event->args[1]);
$newEvent = new BulkActionEvent($event->args[0], $items);
var_dump($newEvent);
# send_event($newEvent);
$action = $event->args[0];
$query = $event->args[1];
$items = $this->yield_search_results($query);
log_info("bulk_actions", "Performing $action on {$event->args[1]}");
send_event(new BulkActionEvent($event->args[0], $items));
}
}