Automattic\WooCommerce\EmailEditor\Integrations\Core\Renderer\Blocks

Embed::get_all_provider_configsprivateWC 1.0

Get all provider configurations (audio and video).

Method of the class: Embed{}

No Hooks.

Returns

Array. All provider configurations.

Usage

// private - for code of main (parent) class only
$result = $this->get_all_provider_configs(): array;

Embed::get_all_provider_configs() code WC 10.5.0

private function get_all_provider_configs(): array {
	return array_merge( self::AUDIO_PROVIDERS, self::VIDEO_PROVIDERS );
}