Automattic\WooCommerce\Internal\Admin

OrderMilestoneEasterEgg::get_variant_mapprivateWC 1.0

Returns the map of variant keys to their SVG filenames.

Method of the class: OrderMilestoneEasterEgg{}

No Hooks.

Returns

Array. string>

Usage

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

OrderMilestoneEasterEgg::get_variant_map() code WC 10.9.1

private function get_variant_map(): array {
	return array(
		'llama' => 'woo-pinata-llama2.svg',
		'octo'  => 'woo-octo.svg',
		'whale' => 'woo-whale.svg',
	);
}