WC_Settings_Integrations::get_integrations()protectedWC 1.0

Get the currently available integrations. This method exists to ease unit testing.

Method of the class: WC_Settings_Integrations{}

No Hooks.

Return

Array. Currently available integrations.

Usage

// protected - for code of main (parent) or child class
$result = $this->get_integrations();

WC_Settings_Integrations::get_integrations() code WC 8.7.0

protected function get_integrations() {
	return WC()->integrations->get_integrations();
}