Returns the available operations for this form.
array An associative array of operations, suitable for a select element.
protected function getBulkOptions() {
return array_map(function ($action) {
return $action
->label();
}, $this->actions);
}