Payments_Tab::settings_add_tab_id( array $tabs )

Add the payments tab to the list of tab ids for the Tickets settings.


Parameters

$tabs

(array) (Required) Array containing the tabs ids for Event Tickets settings.


Top ↑

Return

(array) $tabs Array containing the tabs ids for Event Tickets settings.


Top ↑

Source

File: src/Tickets/Commerce/Payments_Tab.php

	public function settings_add_tab_id( $tabs ) {
		$tabs[] = static::$slug;

		return $tabs;
	}

Top ↑

Changelog

Changelog
Version Description
5.4.0 Introduced.