Controller::site_health_additional_subsections( array $subsections )
Appends an additional subsection to the site health subsections array.
Contents
Parameters
- $subsections
-
(array) (Required) The existing array of site health subsections.
Return
(array) The modified array of subsections with the Event Tickets Plus subsection appended.
Source
File: src/Tickets_Plus/Integrations/Event_Tickets/Site_Health/Controller.php
public function site_health_additional_subsections( $subsections ) {
$subsections[] = tribe( Event_Tickets_Plus_Subsection::class )->get_subsection();
return $subsections;
}
Changelog
| Version | Description |
|---|---|
| 5.9.1 | Introduced. |