Subversion Repositories wpShopGermany4

Rev

Rev 5683 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 5683 Rev 5751
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" 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-Order&action=ajax&mod=wpsg_mod_export&noheader=1" onsubmit="wpsg_mod_export_serializefilter();">
9
 
9
 
10
    <div class="form-group form-group-sm">
10
    <div class="row">
-
 
11
		<div class="col-lg-4">
-
 
12
 
11
        <?php foreach ($this->view['wpsg_mod_export']['arProfile'] as $p) { ?>
13
            <?php foreach ($this->view['wpsg_mod_export']['arProfile'] as $p) { ?>
12
        <div class="checkbox">
-
 
13
            <label>
-
 
14
                <input type="checkbox" name="wpsg_mod_export_profile[]" value="<?php echo $p['id']; ?>" />&nbsp;<?php echo $p['name']; ?>
14
                <?php echo wpsg_drawForm_Checkbox('wpsg_mod_export_profile[]', $p['name'], false, array('value' => $p['id'])); ?>
15
            </label><br />
-
 
16
        </div>
-
 
17
        <?php } ?>
15
            <?php } ?>
18
    </div>
-
 
19
 
16
 
20
    <br />
17
            <br /><?php echo wpsg_drawForm_SubmitButton(__('Export starten')); ?>
21
 
18
 
22
    <input class="button" type="submit" value="<?php echo __('Export starten', 'wpsg'); ?>" />
19
        </div>
-
 
20
    </div>
23
 
21
 
24
    <input type="hidden" name="filter" id="wpsg_mod_export_filter" value="" />
22
    <input type="hidden" name="filter" id="wpsg_mod_export_filter" value="" />
25
 
23
 
26
</form>
24
</form>
27
 
25