Subversion Repositories wpShopGermany4

Rev

Rev 7717 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
7706 daniel 1
<?php
2
 
3
    declare(strict_types=1);
4
 
5
    /**
7787 daniel 6
     * User: Daschmi (https://daschmi.de)
7706 daniel 7
     * Date: 13.02.2020
8
     * Time: 06:25
9
     */
10
 
11
    $view = $this->view['wpsg_mod_printshop'];
12
 
13
?>
14
 
15
<div class="product_action product_action_price_onepice">
16
	<div class="title">
17
        <?php echo wpsg_translate(__("Preis je #1#", "wpsg"), $view['unit_price'].'²'); ?>
18
    </div>
19
    <div class="price">
20
        <?php echo wpsg_ff($view['price_onepice'], $this->get_option('wpsg_currency').'/'.$view['unit_price'].'²'); ?>
21
    </div>
22
</div>
23
 
24
<div class="product_action product_action_area">
25
    <div class="title">
26
        <span class="label"><?php echo __("Fläche", "wpsg"); ?></span>
27
        <span class="rect">
7717 daniel 28
            (<?php echo wpsg_ff($view['width'], $view['unit_input'], true, 0); ?> x <?php echo wpsg_ff($view['length'], $view['unit_input'], true, 0); ?>)
7706 daniel 29
        </span>
30
    </div>
31
    <div class="price">
32
        <?php echo wpsg_ff($view['area'], $view['unit_price'].'²'); ?>
33
    </div>
34
</div>