This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from collections import OrderedDict | |
input = [{ | |
'name': 'Product1', | |
'locations': ['Paris', 'London', 'Ljubljana'] | |
}, { | |
'name': 'Product2', | |
'locations': ['Berlin', 'London', 'New York'] | |
}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class WCML_REST_API_Support{ | |
/** @var woocommerce_wpml */ | |
private $woocommerce_wpml; | |
/** @var Sitepress */ | |
private $sitepress; | |
/** @var WCML_REST_API_Query_Filters_Products */ | |
private $query_filters_products; |