return;
} $filters =
explode('|',
$filters);
$filters =
$this->
getGroupedFilters($filters);
if (empty($filters)) { return;
} foreach ($filters as $filter) { $condition =
new PropertyCondition($filter);
$criteria->
addCondition($condition);
} } /**
* Helper function which groups the passed filter option ids
* by the filter group.
* Each filter group is joined as own PropertyCondition to the criteria
* object
*
* @param array $filters
*
* @return array
*/