Subversion Repositories wpShopGermany4

Rev

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

Rev Author Line No. Line
7753 daniel 1
<?php
2
 
3
	/**
4
	 * Template welches den Zahlungsdienstleister nach Bestellabschluss einbindet
5
	 */
6
 
7
	$view = $this->view['wpsg_mod_micropayment_paywindow'];
8
 
9
?>
10
 
11
<div class="wpsg_mod_micropayment_paywindow_order_done">
12
 
7754 daniel 13
    <?php if ($view['order_status'] === wpsg_ShopController::STATUS_ZAHLUNGAKZEPTIERT) { ?>
7753 daniel 14
 
7754 daniel 15
        <p>
7753 daniel 16
 
7754 daniel 17
            <?php echo wpsg_translate(__('Betrag wurde mit #1# bereits beglichen.', 'wpsg'), $view['title']); ?>
7753 daniel 18
 
7754 daniel 19
        </p>
7753 daniel 20
 
7754 daniel 21
    <?php } else { ?>
7753 daniel 22
 
7754 daniel 23
        <p>
7753 daniel 24
 
7754 daniel 25
            <?php echo __('Klicken Sie auf folgendes Banner um Ihre Bestellung zu bezahlen.', 'wpsg'); ?>
7753 daniel 26
 
7754 daniel 27
            <br />
7753 daniel 28
 
7754 daniel 29
            <a href="<?php echo $view['url']; ?>" title="<?php echo __('Hier Ihre Bestellung bezahlen.', 'wpsg'); ?>">
30
                <img src="<?php echo $view['logo']; ?>" alt="<?php echo $view['title']; ?>" />
31
            </a>
7753 daniel 32
 
7754 daniel 33
        </p>
7753 daniel 34
 
7755 daniel 35
        <?php if ($this->get_option('wpsg_mod_micropayment_autorun') == '1') { ?>
36
        <script>
37
 
38
            jQuery(document).ready(function() {
39
                window.setTimeout(function() {
40
                    location.href = "<?php echo $view['url']; ?>";
41
                }, 1000);
42
            } );
43
 
44
        </script>
45
        <?php } ?>
46
 
7754 daniel 47
    <?php } ?>
7753 daniel 48
 
7754 daniel 49
</div>