Subversion Repositories wpShopGermany4

Rev

Rev 5261 | Rev 5751 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php

        /**
         * Template für die Integration des Produktexportes in die Bestellvarwaltung im unteren Bereich
         */

?>
<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();">

    <div class="form-group form-group-sm">
        <?php foreach ($this->view['wpsg_mod_export']['arProfile'] as $p) { ?>
        <div class="checkbox">
            <label>
                <input type="checkbox" name="wpsg_mod_export_profile[]" value="<?php echo $p['id']; ?>" />&nbsp;<?php echo $p['name']; ?>
            </label><br />
        </div>
        <?php } ?>
    </div>

    <br />

    <input class="button" type="submit" value="<?php echo __('Export starten', 'wpsg'); ?>" />

    <input type="hidden" name="filter" id="wpsg_mod_export_filter" value="" />

</form>

<script type="text/javascript">/* <![CDATA[ */

    function wpsg_mod_export_serializefilter()
    {

        jQuery('#wpsg_mod_export_filter').val(jQuery('#filter_form').serialize());

    }

/* ]]> */</script>