Subversion Repositories wpShopGermany4

Rev

Rev 6830 | Rev 7804 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6830 daniel 1
<?php
2
 
3
    /**
4
     * Template für die Anzeige des Abo Statuses in der Hauptbestellung
5
     */
6
 
7
 
8
?>
9
 
10
<?php foreach ($this->view['arOrderedAboProducts'] as $oOrderProduct) { ?>
11
 
12
    <?php echo wpsg_drawForm_AdminboxStart($oOrderProduct->getProduct()->getProductName()); ?>
6834 daniel 13
 
14
        <?php $tExpire = strtotime($this->callMod('wpsg_mod_abo', 'getOrderAboExpiration', Array($_REQUEST['edit_id'], $oOrderProduct->getProductKey()))); echo wpsg_drawForm_Text(__('Laufzeit', 'wpsg'), wpsg_formatTimestamp($tExpire), false, Array('class_content_wrap' => (($tExpire > time())?'wpsg_mod_abo_future_expire':'wpsg_mod_abo_expired'))); ?>
15
 
16
        <?php echo wpsg_drawForm_Text(wpsg_translate(__('Preis (#1# Tage):', 'wpsg'), $oOrderProduct->getProduct()->wpsg_mod_abo_durration), wpsg_ff($oOrderProduct->getProduct()->wpsg_mod_abo_price, $this->get_option('wpsg_currency'))); ?>
17
 
6830 daniel 18
        <?php echo wpsg_drawForm_TextStart(); ?>
6834 daniel 19
 
6830 daniel 20
            <?php $abo_product_status = $this->callMod('wpsg_mod_abo', 'getAboProductStatus', Array($_REQUEST['edit_id'], $oOrderProduct->getProductKey())); ?>
21
 
22
            <?php if ($abo_product_status['status'] === wpsg_mod_abo::STATUS_ACTIVE) { ?>
23
 
24
                <?php echo __('Aktiv', 'wpsg'); ?>
25
 
6834 daniel 26
                &nbsp;[&nbsp;<a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=ajax&mod=wpsg_mod_abo&edit_id=<?php echo $_REQUEST['edit_id'] ?>&product_key=<?php echo $oOrderProduct->getProductKey(); ?>&do=stop&noheader=1"><?php echo __('Deaktivieren'); ?></a>&nbsp;]
27
 
6830 daniel 28
            <?php } else if ($abo_product_status['status'] === wpsg_mod_abo::STATUS_STOPPED) { ?>
29
 
6834 daniel 30
                <?php echo __('Inaktiv', 'wpsg'); ?>
6830 daniel 31
 
6834 daniel 32
                &nbsp;[&nbsp;<a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=ajax&mod=wpsg_mod_abo&edit_id=<?php echo $_REQUEST['edit_id'] ?>&product_key=<?php echo $oOrderProduct->getProductKey(); ?>&do=run&noheader=1"><?php echo __('Aktivieren'); ?></a>&nbsp;]
6830 daniel 33
 
34
            <?php } ?>
35
 
36
        <?php echo wpsg_drawForm_TextEnd(__('Verlängerung')); ?>
6834 daniel 37
 
6830 daniel 38
    <?php echo wpsg_drawForm_AdminboxEnd(); ?>
39
 
40
<?php } ?>