Regenerate_Order_Attendees::add_bulk_order_action( array $actions )
Register the custom action to the list of bulk order actions.
Contents
Parameters
- $actions
-
(array) (Required) List of order actions.
Return
(array) List of order actions with new action registered.
Source
File: src/Tribe/Commerce/WooCommerce/Regenerate_Order_Attendees.php
public function add_bulk_order_action( array $actions ) {
$actions[ $this->action_slug ] = __( 'Regenerate Attendees', 'event-tickets-plus' );
return $actions;
}
Changelog
| Version | Description |
|---|---|
| 5.2.7 | Introduced. |