Rev 1406 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php
/**
* Tempalte für die Einstellungsseite des Zahlungsvarianten Moduls
* Sollte normalerweise nicht verändert werden
*/
?>
<script type="text/javascript">
function wpsg_addZV()
{
jQuery('#wpsg_zv_list').html('<img src="<?php echo WPSG_URL; ?>views/gfx/ajax-loader.gif" alt="<?php echo __('Bitte warten ...', 'wpsg'); ?>" />');
jQuery.ajax( {
url: '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_userpayment&noheader=1&do=add',
success: function(data) {
jQuery('#wpsg_zv_list').html(data);
}
} );
} // function wpsg_addZV()
function wpsg_removeZV(zv_id)
{
if (!confirm('<?php echo __('Sind Sie sich sicher, dass sie die Zahlvariante löschen möchten?', 'wpsg'); ?>')) return false;
jQuery('#wpsg_zv_list').html('<img src="<?php echo WPSG_URL; ?>views/gfx/ajax-loader.gif" alt="<?php echo __('Bitte warten ...', 'wpsg'); ?>" />');
jQuery.ajax( {
url: '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_userpayment&noheader=1&do=remove',
data: {
zv_id: zv_id
},
success: function(data) {
jQuery('#wpsg_zv_list').html(data);
}
} );
} // function wpsg_removeZV(zv_id)
</script>
<div class="wpsg_admin_box">
<div class="head">
<div class="title">
<div class="fulltab">
<?php echo __('Zahlvarianten', 'wpsg'); ?>
<a title="<?php echo __('Neue Zahlvariante anlegen', 'wpsg'); ?>" href="" class="wpsg_icon wpsg_icon_right wpsg_icon_add" onclick="return wpsg_addZV();"></a>
</div>
</div>
</div>
<div class="content" id="wpsg_zv_list">
<?php echo $this->callMod('wpsg_mod_userpayment', 'zv_list'); ?>
</div>
</div>
<p class="wpsg_hinweis"><?php echo __('Um eine Zahlvariante zu bearbeiten klicken Sie einfach auf den Namen oder den Rabattwert.', 'wpsg'); ?></p>