Settings::get_featured_gateways_html()
Returns the content for the main featured settings which displays the list of gateways.
Return
(string)
Source
File: src/Tickets/Commerce/Settings.php
public function get_featured_gateways_html() {
$manager = tribe( Manager::class );
$gateways = $manager->get_gateways();
$template = $this->get_template();
return $template->template( 'gateways/container', [ 'gateways' => $gateways, 'manager' => $manager ], false );
}
Changelog
| Version | Description |
|---|---|
| 5.3.0 | Introduced. |