Subversion Repositories wpShopGermany4

Rev

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

<?php

        /**
         * Template für die Einstellungen des Export Moduls
         */

?>
<script type="text/javascript">

        function wpsg_mod_export_profilSwitch()
        {

                jQuery('#profil_content').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_export&do=wpsg_mod_export_profilSwitch&noheader=1',
                        data: {
                                profil: jQuery('#wpsg_mod_export_profil').val()
                        },                      
                        success: function(data) {
                                jQuery("#profil_content").html(data);
                        }
                } );
                
                return false;
                
        } // function wpsg_mod_export_profilSwitch()

        function wpsg_mod_export_addField(profil_id)
        {
                
                jQuery('#wpsg_mod_export_fields').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_export&do=wpsg_mod_export_addField&noheader=1',
                        data: {
                                profil_id: profil_id
                        },                      
                        success: function(data) {
                                
                                jQuery('#wpsg_mod_export_fields').html(data);
                                
                        }
                } );
                
                return false;
                
        }
        
        function wpsg_mod_export_removeField(field_id)
        {

                if (!confirm('<?php echo __('Sind Sie sich sicher, dass das Feld gelöscht werden soll?', 'wpsg'); ?>')) return false;
                
                jQuery('tr.wpsg_mod_export_fieldrow_' + field_id).parent().remove();
                
                jQuery.ajax( { 
                        url: '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_export&do=wpsg_mod_export_removeField&noheader=1',
                        data: {
                                field_id: field_id
                        },                      
                        success: function(data) {
                                
                                if (data != '1')
                                {
                                        
                                        alert(data);
                                        
                                }
                                
                        }
                } );

                return false;   
                
        } // function wpsg_mod_export_removeField(field_id)
        
        function wpsg_mod_export_removeProfil(profil_id)
        {

                if (!confirm('<?php echo __('Sind sie sich sicher?', 'wpsg'); ?>')) return false;
                
                jQuery('#profil_content').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_export&do=wpsg_mod_export_removeProfil&noheader=1',
                        data: {
                                profil: profil_id
                        },                      
                        success: function(data) {
                                jQuery("#wpsg_profil_list").html(data);
                        }
                } );
                
                return false;
                
        } // function wpsg_mod_export_removeProfil(profil_id)
        
        function wpsg_mod_export_addProfil()
        {

                jQuery('#wpsg_profil_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_export&do=wpsg_mod_export_addProfil&noheader=1',                        
                        success: function(data) {
                                jQuery("#wpsg_profil_list").html(data);
                        }
                } );
                
                return false;
                
        } // function wpsg_addExportProfil()

        function wpsg_mod_export_setAtt(htmlCheckbox, field_id)
        {
                
                var value = '0';
                if (jQuery(htmlCheckbox).prop('checked') == true) value = '1';
                
                jQuery.ajax( { 
                        url: '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_export&do=inlinedit&noheader=1',
                        data: {
                                'name': 'field_xml_att_' + field_id,
                                'value': value
                        },                      
                        success: function(data) {
                                
                                if (data != '1')
                                {
                                        
                                        alert(data);
                                        
                                }
                                
                        }
                } );
                
        }
        
</script>

<a title="<?php echo __('Neuens Exportprofil anlegen', 'wpsg'); ?>" href="#" class="" onclick="return wpsg_mod_export_addProfil();"><span class="wpsg-glyphicon glyphicon glyphicon-plus"></span><?php echo __('Neues Exportprofil anlegen', 'wpsg'); ?></a>
<br /><br />

<div id="wpsg_profil_list"><?php echo $this->callMod('wpsg_mod_export', 'profilList'); ?></div>