Automattic\WooCommerce\Internal\Admin
OrderMilestoneEasterEgg::get_variant_map
Returns the map of variant keys to their SVG filenames.
Method of the class: OrderMilestoneEasterEgg{}
No Hooks.
Returns
Array
Usage
// private - for code of main (parent) class only $result = $this->get_variant_map(): array;
OrderMilestoneEasterEgg::get_variant_map() 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',
);
}