Subversion Repositories wpShopGermany4

Rev

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

Rev 6425 Rev 6428
Line 3... Line 3...
3
	/**
3
	/**
4
	 * Template für die Einstellungen des Export Moduls
4
	 * Template für die Einstellungen des Export Moduls
5
	 */
5
	 */
6
 
6
 
7
?>
7
?>
-
 
8
 
8
<script type="text/javascript">
9
<script type="text/javascript">
9
 
10
 
10
	function wpsg_mod_export_profilSwitch()
11
	function wpsg_mod_export_profilSwitch()
11
	{
12
	{
12
 
13
 
Line 148... Line 149...
148
<a title="<?php echo __('Neuens Exportprofil anlegen', 'wpsg'); ?>" href="#" class="" onclick="return wpsg_mod_export_addProfil(<?php echo wpsg_mod_export::TYPE_ORDER; ?>);"><span class="wpsg-glyphicon glyphicon glyphicon-plus"></span><?php echo __('Neues Exportprofil für Bestellungen anlegen', 'wpsg'); ?></a><br />
149
<a title="<?php echo __('Neuens Exportprofil anlegen', 'wpsg'); ?>" href="#" class="" onclick="return wpsg_mod_export_addProfil(<?php echo wpsg_mod_export::TYPE_ORDER; ?>);"><span class="wpsg-glyphicon glyphicon glyphicon-plus"></span><?php echo __('Neues Exportprofil für Bestellungen anlegen', 'wpsg'); ?></a><br />
149
<a title="<?php echo __('Neuens Exportprofil anlegen', 'wpsg'); ?>" href="#" class="" onclick="return wpsg_mod_export_addProfil(<?php echo wpsg_mod_export::TYPE_PRODUCT; ?>);"><span class="wpsg-glyphicon glyphicon glyphicon-plus"></span><?php echo __('Neues Exportprofil für Produkte anlegen', 'wpsg'); ?></a>
150
<a title="<?php echo __('Neuens Exportprofil anlegen', 'wpsg'); ?>" href="#" class="" onclick="return wpsg_mod_export_addProfil(<?php echo wpsg_mod_export::TYPE_PRODUCT; ?>);"><span class="wpsg-glyphicon glyphicon glyphicon-plus"></span><?php echo __('Neues Exportprofil für Produkte anlegen', 'wpsg'); ?></a>
150
 
151
 
151
<br /><br />
152
<br /><br />
152
 
153
 
153
<div id="wpsg_profil_list"><?php echo $this->callMod('wpsg_mod_export', 'profilList'); ?></div>
-
 
154
154
<div id="wpsg_profil_list"><?php echo $this->callMod('wpsg_mod_export', 'profilList'); ?></div>
-
 
155
 
-
 
156
<br />
-
 
157
 
-
 
158
<fieldset>
-
 
159
	<legend><?php echo __('Profil importieren', 'wpsg'); ?></legend>
-
 
160
	<form method="post" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&action=module&modul=wpsg_mod_export&do=import&noheader=1" enctype="multipart/form-data">
-
 
161
		
-
 
162
		<?php echo wpsg_drawForm_Upload('profil_file', __('JSON Profildatei', 'wpsg')); ?>
-
 
163
		
-
 
164
		<input type="submit" value="<?php echo __('Profil importieren', 'wpsg'); ?>" class="button"  />
-
 
165
		
-
 
166
	</form>
-
 
167
</fieldset>
-
 
168
155
169