Rev 4943 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
3319 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Anzeige nach der Bestellung bei Auswahl einer Giropay Zahlungsart
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
|
|
8 |
<?php echo __('Klicken Sie auf das folgende Logo um ihre Bestellung zu bezahlen.', 'wpsg'); ?>
|
|
|
9 |
<br /><br />
|
|
|
10 |
<a href="<?php echo $this->view['wpsg_mod_giropay']['payLink']; ?>"><img src="<?php echo $this->view['wpsg_mod_giropay']['logo']; ?>" alt="<?php echo $this->view['wpsg_mod_giropay']['title']; ?>" /></a>
|
|
|
11 |
<?php if ($this->get_option('wpsg_mod_giropay_paystart') == '1') { ?>
|
|
|
12 |
<script type="text/javascript">
|
|
|
13 |
|
|
|
14 |
jQuery(document).ready(function() {
|
|
|
15 |
window.setTimeout(function() {
|
|
|
16 |
location.href = "<?php echo $this->view['wpsg_mod_giropay']['payLink']; ?>";
|
|
|
17 |
}, 1000);
|
|
|
18 |
} );
|
|
|
19 |
|
|
|
20 |
</script>
|
|
|
21 |
<?php } ?>
|