3571 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
7110 |
thomas |
4 |
* Template für die Integration von wirecard in die Bestellabschlussseite
|
3571 |
daniel |
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
3628 |
daniel |
8 |
<?php if ($this->get_option('wpsg_mod_wirecard_mode') == '0') { ?>
|
|
|
9 |
|
|
|
10 |
<iframe id="wpsg_mod_wirecard_iframe" src="<?php echo $this->view['wpsg_mod_wirecard']['redirectUrl']; ?>"></iframe>
|
|
|
11 |
|
|
|
12 |
<?php } else if ($this->get_option('wpsg_mod_wirecard_mode') == '1') { ?>
|
|
|
13 |
|
|
|
14 |
<script type="text/javascript">/* <![CDATA[ */
|
|
|
15 |
|
3629 |
daniel |
16 |
function wirecard_openPopup()
|
|
|
17 |
{
|
3628 |
daniel |
18 |
|
3629 |
daniel |
19 |
wirecard_popup = window.open('<?php echo $this->view['wpsg_mod_wirecard']['redirectUrl']; ?>', '<?php echo __('Zahlung mit wirecard', 'wpsg'); ?>', 'width=600,height=600,resizable=yes');
|
|
|
20 |
|
|
|
21 |
}
|
|
|
22 |
|
|
|
23 |
jQuery(document).ready(function() { wirecard_openPopup(); } );
|
|
|
24 |
|
3628 |
daniel |
25 |
/* ]]> */</script>
|
|
|
26 |
|
3695 |
daniel |
27 |
<?php echo __('Sollte sich kein Fenster für die Zahlung öffnen liegt dies möglicherweise an Ihrem PopUp Blocker. Klicken sie <a href="#" onclick="wirecard_openPopup(); return false">hier</a> um das Fenster erneut zu öffnen.', 'wpsg'); ?>
|
3629 |
daniel |
28 |
|
3628 |
daniel |
29 |
<?php } else if ($this->get_option('wpsg_mod_wirecard_mode') == '2') { ?>
|
|
|
30 |
|
|
|
31 |
<a href="<?php echo $this->view['wpsg_mod_wirecard']['redirectUrl']; ?>">
|
|
|
32 |
<img src="<?php echo $this->arPayment[12]['logo']; ?>" alt="<?php echo __('Zahlung mit wirecard starten.', 'wpsg'); ?>" />
|
|
|
33 |
</a>
|
|
|
34 |
|
|
|
35 |
<?php } ?>
|