Subversion Repositories wpShopGermany4

Rev

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

Rev Author Line No. Line
1558 daniel 1
<?php
2
 
3
	/**
4
	 * Template für die Einstellungen der Deinstallation
5
	 */
6
 
7
?>
8
<div class="wpsg_admin_submenu">
9
 
5455 thomas 10
	<div class="list-group">
11
		<span class="list-group-head list-group-item"><?php echo __('Konfiguration'); ?></span>
12
		<?php foreach ($this->view['arSubAction'] as $k => $v) { ?>
13
		<a class="list-group-item <?php echo (($k == $this->view['subAction'])?'active':''); ?>" href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&amp;subaction=<?php echo $k; ?>"><?php echo $v['Menutext']; ?></a>
1558 daniel 14
		<?php } ?>
5455 thomas 15
	</div>
1558 daniel 16
 
17
</div>
18
 
19
<div class="wpsg_admin_content">
5748 daniel 20
 
21
	<?php echo wpsg_drawForm_AdminboxStart(__('Datensätze löschen / Plugin deinstallieren', 'wpsg')); ?>
22
 
23
	<form name="form1" class="form-horizontal" method="post" enctype="multipart/form-data" action="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Admin&amp;noheader=1&amp;subaction=<?php echo $_REQUEST['subaction']; ?>">
24
 
7560 daniel 25
		<?php echo wp_nonce_field('wpsg-admin-deinstall'); ?>
26
 
1558 daniel 27
		<p><?php echo __('Bitte wählen Sie aus, was Sie entfernen möchten?', 'wpsg'); ?></p>
5748 daniel 28
 
29
		<?php echo wpsg_drawForm_Checkbox('wpsg_deinstall_products', wpsg_translate(__('Produkte (#1# Datensätze)', 'wpsg'), (($this->view['count_products'] > 0)?$this->view['count_products']:0)), false, array('fullWidth' => true)); ?>
30
		<?php echo wpsg_drawForm_Checkbox('wpsg_deinstall_customer', wpsg_translate(__('Kunden (#1# Datensätze)', 'wpsg'), (($this->view['count_customer'] > 0)?$this->view['count_customer']:0)), false, array('fullWidth' => true)); ?>
31
		<?php echo wpsg_drawForm_Checkbox('wpsg_deinstall_order', wpsg_translate(__('Bestellungen (#1# Datensätze)', 'wpsg'), (($this->view['count_order'] > 0)?$this->view['count_order']:0)), false, array('fullWidth' => true)); ?>
32
		<?php echo wpsg_drawForm_Checkbox('wpsg_deinstall_incompleteorder', wpsg_translate(__('Unvollständige Bestellungen (#1# Datensätze)', 'wpsg'), (($this->view['count_order_incomplete'] > 0)?$this->view['count_order_incomplete']:0)), false, array('fullWidth' => true)); ?>
33
 
1558 daniel 34
		<br />
6613 thomas 35
 
5748 daniel 36
		<?php echo wpsg_drawForm_Checkbox('wpsg_deinstall_core', __('Plugin, Programmdateien, Moduldateien und Datenbanktabellen', 'wpsg'), false, array('fullWidth' => true)); ?>
37
 
6613 thomas 38
		<br />
39
 
6618 daniel 40
		<?php echo wpsg_drawForm_Checkbox('wpsg_deinstall_sites', __('Shopseiten (Warenkorbseite, Produktdetailseite, Versandkosten, AGB, Datenschutz, Widerrufsbelehrung, Impressum, ... )', 'wpsg'), false, array('fullWidth' => true)); ?>
6613 thomas 41
 
1558 daniel 42
		<p class="submit"><input onclick="return wpsg_check_deinstall();" type="submit" value="<?php echo __('Deinstallation durchführen', 'wpsg'); ?>" class="button-primary" id="submit" name="submit" /></p>
5748 daniel 43
 
1558 daniel 44
		<div class="wpsg_hinweis">
5748 daniel 45
			<?php echo __('Hinweis: Es werden hier auch bereits gelöschte Datensätze angezeigt/gezählt, da diese noch im System hinterlegt bleiben.', 'wpsg'); ?><br /><br />
6613 thomas 46
			<strong><?php echo __('Das Deinstallieren und Löschen der Datensätze ist nicht umkehrbar!', 'wpsg'); ?></strong>
1558 daniel 47
		</div>
5748 daniel 48
 
1558 daniel 49
	</form>
5748 daniel 50
 
51
	<?php echo wpsg_drawForm_AdminboxEnd(); ?>
52
 
1558 daniel 53
</div>
54
 
5748 daniel 55
<script type="text/javascript">/* <![CDATA[ */
1558 daniel 56
 
57
	function wpsg_check_deinstall()
58
	{
59
 
60
		if (jQuery('.wpsg_admin_content input:checked').length <= 0)
61
		{
62
 
63
			alert('<?php echo __('Bitte mindestens eine Option wählen.', 'wpsg'); ?>'); return false;
64
 
65
		}
66
 
67
		if (!confirm('<?php echo __('Sind Sie sich sicher? Der Vorgang ist nicht umkehrbar!', 'wpsg'); ?>'))
68
		{
69
 
70
			return false;
71
 
72
		}
73
 
74
		return true;
75
 
76
	} // function wpsg_check_deinstall()
77
 
5748 daniel 78
/* ]]> */</script>