$productContext =
$this->contextService->
getShopContext();
$product =
$this->listProductService->
get($orderNumber,
$productContext);
if (!
$product || !
$product->
hasProperties()) { return [];
} $set =
$this->propertyService->
get($product,
$productContext);
if (!
$set) { return [];
} return $this->legacyStructConverter->
convertPropertySetStruct($set);
} /**
* Save a new product comment / voting
* Reads several values directly from _POST
*
* @param int $article - s_articles.id
*
* @throws Enlight_Exception
*/
public function sSaveComment($article) {