Tribe__Tickets__Admin__Move_Tickets::bulk_actions( array $actions )
Adds a “Move” option to the attendee screen bulk action selector.
Contents
There is not a corresponding bulk action handler, as such, because when this is selected further handling will be managed via JS (and interaction will be through a modal interface).
Parameters
- $actions
-
(array) (Required)
Return
(array)
Source
File: src/Tribe/Admin/Move_Tickets.php
public function bulk_actions( array $actions ) {
if ( tribe( 'tickets.attendees' )->user_can_manage_attendees() && is_admin() ) {
$actions['move'] = _x( 'Move', 'attendee screen bulk actions', 'event-tickets' );
}
return $actions;
}