17,16 → 17,19 |
<?php echo wpsg_translate(__('Bitte als Betreff angeben: "#1#"', 'wpsg'), $this->view['wpsg_mod_prepayment']['subject']); ?> |
|
<?php if (isset($this->view['wpsg_mod_prepayment']['subject'])) { ?> |
<p><?php echo __('Wenn Ihre Banking-App Girocode unterstützt, können Sie diesen QRCode scannen.', 'wpsg'); ?></p> |
|
<p> |
<?php echo __('Wenn Ihre Banking-App Girocode unterstützt, können Sie diesen QRCode scannen.', 'wpsg'); ?> |
</p> |
|
<?php |
|
require_once WPSG_PATH_LIB.'phpgirocode.class.php'; |
|
$img = $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['basket']['sum']['preis_gesamt_brutto'], |
$this->view['wpsg_mod_prepayment']['subject'], 8, PhpGirocode::OUTPUT_BASE64)); |
$img = $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['o_id'], $this->view['wpsg_mod_prepayment']['subject'], $this->view['basket']['sum']['preis_gesamt_brutto'], 8, PhpGirocode::OUTPUT_BASE64)); |
|
echo '<img src="data:image/png;base64,'.$img.'" />'; |
|
?> |
<img src="data:image/gif;base64,<?php echo $img; ?>" alt="" /> |
|
<pre style="display:none;"><?php echo $this->callMod('wpsg_mod_prepayment', 'genQRCode', array($this->view['basket']['sum']['preis_gesamt_brutto'], |
$this->view['wpsg_mod_prepayment']['subject'], 8, PhpGirocode::OUTPUT_TEST)); |
?></pre> |
<?php } ?> |