Index: /views/mods/mod_productgroups/index.phtml
===================================================================
--- /views/mods/mod_productgroups/index.phtml	(revision 8197)
+++ /views/mods/mod_productgroups/index.phtml	(revision 8198)
@@ -81,4 +81,5 @@
                 <thead>
                     <tr>
+                        <th class="wpsg_pic_col"></th>
                         <th class="wpsg_order col_name" data-order="nr"><?php echo __("Name", 'wpsg'); ?></th>
                         <th class="wpsg_order col_template" data-order="template"><?php echo __("Template", 'wpsg'); ?></th>
@@ -87,8 +88,19 @@
                 </thead>
                 <tbody>
-                    <?php foreach ($this->view['arData'] as $pg) { ?>
+                    <?php foreach ($this->view['arData'] as /** @var wpsg_productgroup */ $pg) { ?>
                     <tr>
+                        <td class="wpsg_pic_col">
+                            <?php if ($pg->getImage() > 0) { ?>
+
+                                <?php echo \wp_get_attachment_image($pg->getImage(), [75, 75]); ?>
+
+                            <?php } ?>
+                        </td>
                         <td class="col_name">
-                            <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>
+                            <strong><a title="<?php echo __("Diese Produktgruppe bearbeiten", "wpsg"); ?>" href="<?php
+
+                                echo wpsg_admin_url('Productgroups', '', ['wpsg_mod_action' => 'edit', 'edit_id' => $pg->id]);
+
+                            ?>" class="row-title"><?php echo $pg->name; ?></a></strong>
 					        <div class="row-actions">
                                 <span class="edit"><a title="<?php echo __("Diese Produktgruppe bearbeiten", "wpsg"); ?>" href="<?php
Index: /views/mods/mod_productgroups/show_2.phtml
===================================================================
--- /views/mods/mod_productgroups/show_2.phtml	(revision 8197)
+++ /views/mods/mod_productgroups/show_2.phtml	(revision 8198)
@@ -10,5 +10,5 @@
     if (isset($_REQUEST['show'])) {
 
-        $oProductgroup = productgroup::getInstance(intval($_REQUEST['show']));
+        $oProductgroup = \wpsg_productgroup::getInstance(intval($_REQUEST['show']));
         $arProducts = $oProductgroup->findProducts();
         $view = 'products';
@@ -16,5 +16,5 @@
     } else {
 
-        $arProductgroups = productgroup::find();
+        $arProductgroups = \wpsg_productgroup::find();
         $view = 'productgroups';
 
