Exemple #1
0
 static function _getItemsText($orderedProducts, $currency)
 {
     $itemsText = Helper_Cart::getSoldProductsText($orderedProducts, $currency);
     $text = '';
     if ($itemsText) {
         $text = "Items:\n" . $itemsText;
     }
     return $text;
 }