Subversion Repositories wpShopGermany4

Rev

Rev 5751 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1424 robert 1
<?php
2
 
3
	/**
4
	 * Template für die Integration des Produktexportes in die Bestellvarwaltung im unteren Bereich
5
	 */
6
 
7
?>
5896 daniel 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();">
1424 robert 9
 
5751 daniel 10
    <div class="row">
11
		<div class="col-lg-4">
12
 
13
            <?php foreach ($this->view['wpsg_mod_export']['arProfile'] as $p) { ?>
5896 daniel 14
                <?php echo wpsg_drawForm_Checkbox('wpsg_mod_export_profile[]', $p['name'], false, array('value' => $p['id'], 'noHidden' => true)); ?>
5751 daniel 15
            <?php } ?>
16
 
17
            <br /><?php echo wpsg_drawForm_SubmitButton(__('Export starten')); ?>
18
 
5683 daniel 19
        </div>
20
    </div>
1424 robert 21
 
5683 daniel 22
    <input type="hidden" name="filter" id="wpsg_mod_export_filter" value="" />
1424 robert 23
 
5683 daniel 24
</form>
1424 robert 25
 
5683 daniel 26
<script type="text/javascript">/* <![CDATA[ */
1424 robert 27
 
5683 daniel 28
    function wpsg_mod_export_serializefilter()
29
    {
1424 robert 30
 
5683 daniel 31
        jQuery('#wpsg_mod_export_filter').val(jQuery('#filter_form').serialize());
1424 robert 32
 
5683 daniel 33
    }
1425 daniel 34
 
1428 daniel 35
/* ]]> */</script>