Initial commit

This commit is contained in:
Ivan Petrov
2025-12-24 19:19:01 +03:00
commit a7097c6178
19493 changed files with 94306 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
<?php
$product_price = number_format($variables["price"], 2, ',', ' ');
if($variables["sale_percent"] > 0) echo number_format($variables["price"] * (1 - ($variables["sale_percent"] / 100)), 2, ',', ' ');
else echo $product_price;