Rev 4943 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
3648 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Integration der Bestellvariablen in die HTML Mails
|
|
|
5 |
* dieses Template wird für die Adminmail, Kundenmail und Auftragsbestätigung verwendet
|
|
|
6 |
*/
|
|
|
7 |
|
|
|
8 |
?>
|
|
|
9 |
<h2><?php echo __('Bestellvariablen', 'wpsg'); ?>:</h2>
|
|
|
10 |
|
|
|
11 |
<table style="width:100%;">
|
|
|
12 |
<?php foreach ($this->view['wpsg_mod_ordervars']['data'] as $ov) { ?>
|
|
|
13 |
<tr>
|
|
|
14 |
<td style="padding-right:15px; text-align:left;"><?php echo __($ov['name'], 'wpsg'); ?>:</td>
|
|
|
15 |
<td style=""><?php echo $ov['value']; ?></td>
|
|
|
16 |
</tr>
|
|
|
17 |
<?php } ?>
|
|
|
18 |
</table>
|