Subversion Repositories wpShopGermany4

Rev

Rev 7717 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php

    declare(strict_types=1);

    /**
     * User: Daschmi (daschmi@daschmi.de)
     * Date: 13.02.2020
     * Time: 06:25
     */

    $view = $this->view['wpsg_mod_printshop'];

?>

<div class="product_action product_action_price_onepice">
        <div class="title">
        <?php echo wpsg_translate(__("Preis je #1#", "wpsg"), $view['unit_price'].'²'); ?>
    </div>
    <div class="price">
        <?php echo wpsg_ff($view['price_onepice'], $this->get_option('wpsg_currency').'/'.$view['unit_price'].'²'); ?>
    </div>
</div>

<div class="product_action product_action_area">
    <div class="title">
        <span class="label"><?php echo __("Fläche", "wpsg"); ?></span>
        <span class="rect">
            (<?php echo wpsg_ff($view['width'], $view['unit_price'], true, 0); ?> x <?php echo wpsg_ff($view['length'], $view['unit_price'], true, 0); ?>)
        </span>
    </div>
    <div class="price">
        <?php echo wpsg_ff($view['area'], $view['unit_price'].'²'); ?>
    </div>
</div>