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&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&noheader=1&subaction=<?php echo $_REQUEST['subaction']; ?>">
|
|
|
24 |
|
1558 |
daniel |
25 |
<p><?php echo __('Bitte wählen Sie aus, was Sie entfernen möchten?', 'wpsg'); ?></p>
|
5748 |
daniel |
26 |
|
|
|
27 |
<?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)); ?>
|
|
|
28 |
<?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)); ?>
|
|
|
29 |
<?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)); ?>
|
|
|
30 |
<?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)); ?>
|
|
|
31 |
|
1558 |
daniel |
32 |
<br />
|
6613 |
thomas |
33 |
|
5748 |
daniel |
34 |
<?php echo wpsg_drawForm_Checkbox('wpsg_deinstall_core', __('Plugin, Programmdateien, Moduldateien und Datenbanktabellen', 'wpsg'), false, array('fullWidth' => true)); ?>
|
|
|
35 |
|
6613 |
thomas |
36 |
<br />
|
|
|
37 |
|
6618 |
daniel |
38 |
<?php echo wpsg_drawForm_Checkbox('wpsg_deinstall_sites', __('Shopseiten (Warenkorbseite, Produktdetailseite, Versandkosten, AGB, Datenschutz, Widerrufsbelehrung, Impressum, ... )', 'wpsg'), false, array('fullWidth' => true)); ?>
|
6613 |
thomas |
39 |
|
1558 |
daniel |
40 |
<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 |
41 |
|
1558 |
daniel |
42 |
<div class="wpsg_hinweis">
|
5748 |
daniel |
43 |
<?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 |
44 |
<strong><?php echo __('Das Deinstallieren und Löschen der Datensätze ist nicht umkehrbar!', 'wpsg'); ?></strong>
|
1558 |
daniel |
45 |
</div>
|
5748 |
daniel |
46 |
|
1558 |
daniel |
47 |
</form>
|
5748 |
daniel |
48 |
|
|
|
49 |
<?php echo wpsg_drawForm_AdminboxEnd(); ?>
|
|
|
50 |
|
1558 |
daniel |
51 |
</div>
|
|
|
52 |
|
5748 |
daniel |
53 |
<script type="text/javascript">/* <![CDATA[ */
|
1558 |
daniel |
54 |
|
|
|
55 |
function wpsg_check_deinstall()
|
|
|
56 |
{
|
|
|
57 |
|
|
|
58 |
if (jQuery('.wpsg_admin_content input:checked').length <= 0)
|
|
|
59 |
{
|
|
|
60 |
|
|
|
61 |
alert('<?php echo __('Bitte mindestens eine Option wählen.', 'wpsg'); ?>'); return false;
|
|
|
62 |
|
|
|
63 |
}
|
|
|
64 |
|
|
|
65 |
if (!confirm('<?php echo __('Sind Sie sich sicher? Der Vorgang ist nicht umkehrbar!', 'wpsg'); ?>'))
|
|
|
66 |
{
|
|
|
67 |
|
|
|
68 |
return false;
|
|
|
69 |
|
|
|
70 |
}
|
|
|
71 |
|
|
|
72 |
return true;
|
|
|
73 |
|
|
|
74 |
} // function wpsg_check_deinstall()
|
|
|
75 |
|
5748 |
daniel |
76 |
/* ]]> */</script>
|