Subversion Repositories wpShopGermany4

Compare Revisions

Ignore whitespace Rev 7815 → Rev 7816

/mods/mod_abo/produkt_addedit_content.phtml
4,9 → 4,12
* Integriert die Abo-Einstellungen in das Produkt
*/
 
$arPaymentSelect = Array();
$arPaymentSelect = [
'origin' => __('Wie ursprüngliche Zahlungsart', 'wpsg')
];
foreach ($this->arPayment as $p) { $arPaymentSelect[$p['id']] = $p['name']; }
?>
<script type="text/javascript">/* <![CDATA[ */
 
77,7 → 80,7
</div>
<div class="wpsg_mod_abo_expiremode wpsg_mod_abo_expiremode_<?php echo wpsg_mod_abo::EXPIRE_AUTO; ?>" style="display:none;">
<?php echo wpsg_drawForm_Select('wpsg_mod_abo_autoexpire_payment', __('Zahlungsart für automatische Verlängerung', 'wpsg'), $arPaymentSelect, $this->view['product']['wpsg_mod_abo_autoexpire_payment'], array('help' => 'wpsg_mod_abo_autoexpire_payment')); ?>
<?php echo wpsg_drawForm_Select('wpsg_mod_abo_autoexpire_customermail', __('Mail an Kunden', 'wpsg'), [
/mods/mod_abo/settings_edit.phtml
4,7 → 4,10
* Template für die Einstellungen des Abo Moduls
*/
$arPaymentSelect = Array();
$arPaymentSelect = [
'origin' => __('Wie ursprüngliche Zahlungsart', 'wpsg')
];
foreach ($this->arPayment as $p) { $arPaymentSelect[$p['id']] = $p['name']; }
?>