Line 16... |
Line 16... |
16 |
</div>
|
16 |
</div>
|
17 |
<div class="collapse navbar-collapse" id="bs-customer-navbar-collapse-1">
|
17 |
<div class="collapse navbar-collapse" id="bs-customer-navbar-collapse-1">
|
18 |
<ul class="nav navbar-nav">
|
18 |
<ul class="nav navbar-nav">
|
19 |
<li role="presentation" class="wpsg-customer-tab-a active"><a href="#" onclick="return false;"><?php echo wpsg_translate(__("Produktgruppenverwaltung (#1# Produktgruppen)", "wpsg"), $this->view['countAll']); ?></a></li>
|
19 |
<li role="presentation" class="wpsg-customer-tab-a active"><a href="#" onclick="return false;"><?php echo wpsg_translate(__("Produktgruppenverwaltung (#1# Produktgruppen)", "wpsg"), $this->view['countAll']); ?></a></li>
|
20 |
<li role="presentation" class="wpsg-customer-tab-a wpsg_showhide_filter" id="wpsg-customer-tab-0"><a href="#" onclick="return false;"><span class="glyphicon glyphicon-search"></span><?php echo __("Suche", "wpsg"); ?></a></li>
|
20 |
<li role="presentation" class="wpsg-customer-tab-a wpsg_showhide_filter" id="wpsg-customer-tab-0"><a href="#" onclick="return false;"><span class="glyphicon glyphicon-search"></span><?php echo __("Suche", "wpsg"); ?></a></li>
|
- |
|
21 |
<li role="presentation" class="<?php echo ((wpsg_isSizedString($_REQUEST['action'], 'add'))?'active':''); ?>"><a href="<?php
|
21 |
<li role="presentation" class="<?php echo ((wpsg_isSizedString($_REQUEST['action'], 'add'))?'active':''); ?>"><a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Productgroups&wpsg_mod_action=add"><span class="glyphicon glyphicon-plus"></span><?php echo __("Hinzufügen", "wpsg"); ?></a></li>
|
22 |
|
- |
|
23 |
echo wpsg_admin_url('Productgroups', '', ['wpsg_mod_action' => 'add']);
|
- |
|
24 |
|
- |
|
25 |
?>"><span class="glyphicon glyphicon-plus"></span><?php echo __("Hinzufügen", "wpsg"); ?></a></li>
|
22 |
</ul>
|
26 |
</ul>
|
23 |
<ul class="nav navbar-nav navbar-right">
|
27 |
<ul class="nav navbar-nav navbar-right">
|
24 |
</ul>
|
28 |
</ul>
|
25 |
</div>
|
29 |
</div>
|
26 |
</div>
|
30 |
</div>
|
Line 28... |
Line 32... |
28 |
<div class="wpsg-filter wpsg-customer-tab wpsg-customer-tab-0 container-fluid form-horizontal" style="display:<?php echo (($this->view['hasFilter'] === true)?'block':'none'); ?>;">
|
32 |
<div class="wpsg-filter wpsg-customer-tab wpsg-customer-tab-0 container-fluid form-horizontal" style="display:<?php echo (($this->view['hasFilter'] === true)?'block':'none'); ?>;">
|
29 |
<div class="row">
|
33 |
<div class="row">
|
30 |
<div class="col-lg-4">
|
34 |
<div class="col-lg-4">
|
31 |
<form method="post" id="filter_form">
|
35 |
<form method="post" id="filter_form">
|
32 |
|
36 |
|
- |
|
37 |
<?php echo wp_nonce_field('wpsg-mod-productgroups-search'); ?>
|
- |
|
38 |
|
33 |
<input id="wpsg_seite" type="hidden" name="filter[page]" value="<?php echo @$this->view['page']; ?>" class="current-page" />
|
39 |
<input id="wpsg_seite" type="hidden" name="filter[page]" value="<?php echo @$this->view['page']; ?>" class="current-page" />
|
34 |
|
40 |
|
35 |
<input id="wpsg_order" type="hidden" name="filter[order]" value="<?php echo @$this->view['arFilter']['order']; ?>" />
|
41 |
<input id="wpsg_order" type="hidden" name="filter[order]" value="<?php echo @$this->view['arFilter']['order']; ?>" />
|
36 |
<input id="wpsg_ascdesc" type="hidden" name="filter[ascdesc]" value="<?php echo @$this->view['arFilter']['ascdesc']; ?>" />
|
42 |
<input id="wpsg_ascdesc" type="hidden" name="filter[ascdesc]" value="<?php echo @$this->view['arFilter']['ascdesc']; ?>" />
|
37 |
|
43 |
|
Line 83... |
Line 89... |
83 |
<?php foreach ($this->view['arData'] as $pg) { ?>
|
89 |
<?php foreach ($this->view['arData'] as $pg) { ?>
|
84 |
<tr>
|
90 |
<tr>
|
85 |
<td class="col_name">
|
91 |
<td class="col_name">
|
86 |
<strong><a title="<?php echo __("Diese Produktgruppe bearbeiten", "wpsg"); ?>" href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Productgroups&wpsg_mod_action=edit&edit_id=<?php echo $pg->id; ?>" class="row-title"><?php echo $pg->name; ?></a></strong>
|
92 |
<strong><a title="<?php echo __("Diese Produktgruppe bearbeiten", "wpsg"); ?>" href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Productgroups&wpsg_mod_action=edit&edit_id=<?php echo $pg->id; ?>" class="row-title"><?php echo $pg->name; ?></a></strong>
|
87 |
<div class="row-actions">
|
93 |
<div class="row-actions">
|
- |
|
94 |
<span class="edit"><a title="<?php echo __("Diese Produktgruppe bearbeiten", "wpsg"); ?>" href="<?php
|
88 |
<span class="edit"><a title="<?php echo __("Diese Produktgruppe bearbeiten", "wpsg"); ?>" href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Productgroups&wpsg_mod_action=edit&edit_id=<?php echo $pg->id; ?>"><?php echo __("Bearbeiten", "wpsg"); ?></a>
|
95 |
|
- |
|
96 |
echo wpsg_admin_url('Productgroups', '', ['wpsg_mod_action' => 'edit', 'edit_id' => $pg->id]);
|
- |
|
97 |
|
- |
|
98 |
?>"><?php echo __("Bearbeiten", "wpsg"); ?></a>
|
89 |
|
|
99 |
|
|
90 |
<span class="del"><a onclick="if (!confirm('<?php echo __("Sind Sie sich sicher?", "wpsg"); ?>')) return false;" title="<?php echo __("Diese Produktgruppe löschen", "wpsg"); ?>" href="<?php
|
100 |
<span class="del"><a onclick="if (!confirm('<?php echo __("Sind Sie sich sicher?", "wpsg"); ?>')) return false;" title="<?php echo __("Diese Produktgruppe löschen", "wpsg"); ?>" href="<?php
|
91 |
|
101 |
|
92 |
echo \wp_nonce_url(WPSG_URL_WP.'wp-admin/admin.php?page=wpsg-Productgroups&wpsg_mod_action=del&noheader=1&edit_id='.$pg->id, 'wpsg-productgroup-del-'.$pg->id);
|
102 |
echo wpsg_admin_url('Productgroups', '', ['wpsg_mod_action' => 'del', 'edit_id' => $pg->id], ['noheader' => '1']);
|
93 |
|
103 |
|
94 |
?>"><?php echo __("Löschen", "wpsg"); ?></a>
|
104 |
?>"><?php echo __("Löschen", "wpsg"); ?></a>
|
95 |
<?php if ($pg->countProducts() > 0) { ?>
|
105 |
<?php if ($pg->countProducts() > 0) { ?>
|
96 |
|
|
106 |
|
|
97 |
<span class="edit"><a title="<?php echo __("Zur Produktliste", "wpsg"); ?>" href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Produkt&search[pgruppe]=<?php echo $pg->id; ?>"><?php echo __("Zur Produktliste", "wpsg"); ?></a>
|
107 |
<span class="edit"><a title="<?php echo __("Zur Produktliste", "wpsg"); ?>" href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Produkt&search[pgruppe]=<?php echo $pg->id; ?>"><?php echo __("Zur Produktliste", "wpsg"); ?></a>
|