Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/application/views/product/download.php |
<div class="content downl">
<div class="div960">
<table cellpadding="0" cellspacing="0" class="dowload_table">
<?php
$price_product = $file->price;
if( !empty( $file->promotion_price ) AND strtotime($file->promotion_date_start) <= time() AND time() <= strtotime($file->promotion_date_end) ) {
$price_product = $file->promotion_price;
}
if( $user_discount->loaded() ) {
$price_product = $price_product-($price_product*($user_discount->discount/100));
}
?>
Cena produktu: <?php echo $price_product; ?>
<a href="order/cart/<?php echo $file->id; ?>">Kup teraz</a>
<h2>Opis produktu</h2>
<p><?php echo $file->description; ?></p>
<h2>Informacje</h2>
<p>
<?php echo $file->filename; ?>
Wysłano <?php echo date('d/m/Y H:i', $file->added); ?></small>
</p>
</table>
</div>
</div>