Subversion Repositories wpShopGermany4

Rev

Rev 5751 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5751 Rev 5896
Line 3... Line 3...
3
	/**
3
	/**
4
	 * Template für die Integration des Produktexportes in die Bestellvarwaltung im unteren Bereich
4
	 * Template für die Integration des Produktexportes in die Bestellvarwaltung im unteren Bereich
5
	 */
5
	 */
6
 
6
 
7
?>
7
?>
8
<form class="container-fluid form-horizontal" method="post" action="<?php echo WPSG_URL_WP ?>wp-admin/admin.php?page=wpsg-Order&action=ajax&mod=wpsg_mod_export&noheader=1" onsubmit="wpsg_mod_export_serializefilter();">
8
<form class="container-fluid form-horizontal" method="post" action="<?php echo WPSG_URL_WP ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_export&do=handleExport&noheader=1" onsubmit="wpsg_mod_export_serializefilter();">
9
 
9
 
10
    <div class="row">
10
    <div class="row">
11
		<div class="col-lg-4">
11
		<div class="col-lg-4">
12
 
12
 
13
            <?php foreach ($this->view['wpsg_mod_export']['arProfile'] as $p) { ?>
13
            <?php foreach ($this->view['wpsg_mod_export']['arProfile'] as $p) { ?>
14
                <?php echo wpsg_drawForm_Checkbox('wpsg_mod_export_profile[]', $p['name'], false, array('value' => $p['id'])); ?>
14
                <?php echo wpsg_drawForm_Checkbox('wpsg_mod_export_profile[]', $p['name'], false, array('value' => $p['id'], 'noHidden' => true)); ?>
15
            <?php } ?>
15
            <?php } ?>
16
 
16
 
17
            <br /><?php echo wpsg_drawForm_SubmitButton(__('Export starten')); ?>
17
            <br /><?php echo wpsg_drawForm_SubmitButton(__('Export starten')); ?>
18
 
18
 
19
        </div>
19
        </div>