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) { if (count($event->args) < 2) {
return; return;
} }
$query = $event->args[0]; $action = $event->args[0];
$items = $this->yield_search_results($event->args[1]); $query = $event->args[1];
$newEvent = new BulkActionEvent($event->args[0], $items); $items = $this->yield_search_results($query);
var_dump($newEvent); log_info("bulk_actions", "Performing $action on {$event->args[1]}");
# send_event($newEvent); send_event(new BulkActionEvent($event->args[0], $items));
} }
} }