Payments_Tab::settings_add_tab_id( array $tabs )
Add the payments tab to the list of tab ids for the Tickets settings.
Contents
Parameters
- $tabs
-
(array) (Required) Array containing the tabs ids for Event Tickets settings.
Return
(array) $tabs Array containing the tabs ids for Event Tickets settings.
Source
File: src/Tickets/Commerce/Payments_Tab.php
public function settings_add_tab_id( $tabs ) {
$tabs[] = static::$slug;
return $tabs;
}
Changelog
| Version | Description |
|---|---|
| 5.4.0 | Introduced. |