Regenerate_Order_Attendees::add_bulk_order_action( array $actions )

Register the custom action to the list of bulk order actions.


Parameters

$actions

(array) (Required) List of order actions.


Top ↑

Return

(array) List of order actions with new action registered.


Top ↑

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;
	}

Top ↑

Changelog

Changelog
Version Description
5.2.7 Introduced.