Index: /mods/wpsg_mod_productvars.class.php
===================================================================
--- /mods/wpsg_mod_productvars.class.php	(revision 7119)
+++ /mods/wpsg_mod_productvars.class.php	(revision 7120)
@@ -68,4 +68,7 @@
 
 			$this->shop->update_option('wpsg_mod_productvars_showProduct', $_REQUEST['wpsg_mod_productvars_showProduct']);
+			$this->shop->update_option('wpsg_mod_productvars_showBasket', $_REQUEST['wpsg_mod_productvars_showBasket']);
+			$this->shop->update_option('wpsg_mod_productvars_showOverview', $_REQUEST['wpsg_mod_productvars_showOverview']);
+			$this->shop->update_option('wpsg_mod_productvars_showMail', $_REQUEST['wpsg_mod_productvars_showMail']);
 
 		}
@@ -403,32 +406,34 @@
 		public function basket_row(&$p, $i)
 		{
-
-			$produkt_id = $this->shop->basket->getProduktDBID($p['id']);
-
-			if ($produkt_id > 0)
-			{
-
-				$pVarsSet = explode(",", $this->db->fetchOne("SELECT `produktvars` FROM `".WPSG_TBL_PRODUCTS."` WHERE `id` = '".wpsg_q($produkt_id)."'"));
-				foreach ($pVarsSet as $k => $v) { if (trim($v) == '') { unset($pVarsSet[$k]); } }
-
-				if (is_array($pVarsSet) && sizeof($pVarsSet) > 0)
-				{
-
-					$this->shop->view['wpsg_mod_productvars']['data'] = $this->db->fetchAssoc("SELECT * FROM `".WPSG_TBL_PRODUCTS_VARS."` WHERE `id` IN (".wpsg_q(implode(',', $pVarsSet)).") ORDER BY `pos` ASC, `id` ASC", "id");
-
-					foreach ($this->shop->view['wpsg_mod_productvars']['data'] as $k => $v)
-					{
-						$this->shop->view['wpsg_mod_productvars']['data'][$k]['auswahl'] = explode("|", $v['auswahl']);
-					}
-
-					$this->shop->view['wpsg_mod_productvars']['i'] = $i;
-					$this->shop->view['wpsg_mod_productvars']['p'] = $p;
-
-					$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_productvars/basket_row.phtml');
-
-				}
-
-			}
-
+			if ($this->shop->get_option('wpsg_mod_productvars_showBasket') != '1')
+			{ 
+				$produkt_id = $this->shop->basket->getProduktDBID($p['id']);
+	
+				if ($produkt_id > 0)
+				{
+	
+					$pVarsSet = explode(",", $this->db->fetchOne("SELECT `produktvars` FROM `".WPSG_TBL_PRODUCTS."` WHERE `id` = '".wpsg_q($produkt_id)."'"));
+					foreach ($pVarsSet as $k => $v) { if (trim($v) == '') { unset($pVarsSet[$k]); } }
+	
+					if (is_array($pVarsSet) && sizeof($pVarsSet) > 0)
+					{
+	
+						$this->shop->view['wpsg_mod_productvars']['data'] = $this->db->fetchAssoc("SELECT * FROM `".WPSG_TBL_PRODUCTS_VARS."` WHERE `id` IN (".wpsg_q(implode(',', $pVarsSet)).") ORDER BY `pos` ASC, `id` ASC", "id");
+	
+						foreach ($this->shop->view['wpsg_mod_productvars']['data'] as $k => $v)
+						{
+							$this->shop->view['wpsg_mod_productvars']['data'][$k]['auswahl'] = explode("|", $v['auswahl']);
+						}
+	
+						$this->shop->view['wpsg_mod_productvars']['i'] = $i;
+						$this->shop->view['wpsg_mod_productvars']['p'] = $p;
+	
+						$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_productvars/basket_row.phtml');
+	
+					}
+	
+				}
+			}
+				
 		} // public function basket_row(&$p, $i)
 
@@ -565,31 +570,32 @@
 		public function mail_row($index, $produkt)
 		{
-
-			$order_id = $this->shop->view['o_id'];
-
-			$arPVars = $this->getAllProductVarValues($order_id, $produkt['product_index']);
-
-			if (wpsg_isSizedArray($arPVars))
-			{
-
-				$this->shop->view['wpsg_mod_productvars']['data'] = $arPVars;
-				$this->shop->view['wpsg_mod_productvars']['i'] = $index;
-				$this->shop->view['wpsg_mod_productvars']['p'] = $produkt;
-
-				if ($this->shop->htmlMail === true)
-				{
-
-					$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_productvars/mail_row_html.phtml');
-
-				}
-				else
-				{
-
-					$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_productvars/mail_row.phtml');
-
-				}
-
-			}
-
+			if ($this->shop->get_option('wpsg_mod_productvars_showMail') != '1')
+			{
+				$order_id = $this->shop->view['o_id'];
+	
+				$arPVars = $this->getAllProductVarValues($order_id, $produkt['product_index']);
+	
+				if (wpsg_isSizedArray($arPVars))
+				{
+	
+					$this->shop->view['wpsg_mod_productvars']['data'] = $arPVars;
+					$this->shop->view['wpsg_mod_productvars']['i'] = $index;
+					$this->shop->view['wpsg_mod_productvars']['p'] = $produkt;
+	
+					if ($this->shop->htmlMail === true)
+					{
+	
+						$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_productvars/mail_row_html.phtml');
+	
+					}
+					else
+					{
+	
+						$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_productvars/mail_row.phtml');
+	
+					}
+	
+				}
+			}
 		}
 
@@ -635,40 +641,42 @@
 		public function overview_row(&$p, $i)
 		{
-
-			$produkt_id = $this->shop->basket->getProduktDBID($p['id']);
-
-			if ($produkt_id > 0)
-			{
-
-				$pVarsSet = explode(",", $this->db->fetchOne("SELECT `produktvars` FROM `".WPSG_TBL_PRODUCTS."` WHERE `id` = '".wpsg_q($produkt_id)."'"));
-				foreach ($pVarsSet as $k => $v) { if (trim($v) == '') { unset($pVarsSet[$k]); } }
-
-				if (is_array($pVarsSet) && sizeof($pVarsSet) > 0)
-				{
-
-					$this->shop->view['wpsg_mod_productvars']['data'] = $this->db->fetchAssoc("SELECT * FROM `".WPSG_TBL_PRODUCTS_VARS."` WHERE `id` IN (".wpsg_q(implode(',', $pVarsSet)).") ORDER BY `pos` ASC, `id` ASC");
-
-					if ($this->shop->get_option('wpsg_mod_productvars_showvariprice') !== '1' && wpsg_isSizedArray($this->shop->view['wpsg_mod_productvars']['data']))
-					{
-
-						// Es sollen nicht alle angezeigt werden
-						foreach ($this->shop->view['wpsg_mod_productvars']['data'] as $k => $v)
+			
+			if ($this->shop->get_option('wpsg_mod_productvars_showOverview') != '1')
+			{
+				$produkt_id = $this->shop->basket->getProduktDBID($p['id']);
+	
+				if ($produkt_id > 0)
+				{
+	
+					$pVarsSet = explode(",", $this->db->fetchOne("SELECT `produktvars` FROM `".WPSG_TBL_PRODUCTS."` WHERE `id` = '".wpsg_q($produkt_id)."'"));
+					foreach ($pVarsSet as $k => $v) { if (trim($v) == '') { unset($pVarsSet[$k]); } }
+	
+					if (is_array($pVarsSet) && sizeof($pVarsSet) > 0)
+					{
+	
+						$this->shop->view['wpsg_mod_productvars']['data'] = $this->db->fetchAssoc("SELECT * FROM `".WPSG_TBL_PRODUCTS_VARS."` WHERE `id` IN (".wpsg_q(implode(',', $pVarsSet)).") ORDER BY `pos` ASC, `id` ASC");
+	
+						if ($this->shop->get_option('wpsg_mod_productvars_showvariprice') !== '1' && wpsg_isSizedArray($this->shop->view['wpsg_mod_productvars']['data']))
 						{
-
-							if ($v['typ'] === '1' && $p['wpsg_mod_productvars'][$v['id']] === 'not_set') { unset($this->shop->view['wpsg_mod_productvars']['data'][$k]); }
-							else if ($v['typ'] === '2' && !wpsg_isSizedString($p['wpsg_mod_productvars'][$v['id']])) { unset($this->shop->view['wpsg_mod_productvars']['data'][$k]); }
-
+	
+							// Es sollen nicht alle angezeigt werden
+							foreach ($this->shop->view['wpsg_mod_productvars']['data'] as $k => $v)
+							{
+	
+								if ($v['typ'] === '1' && $p['wpsg_mod_productvars'][$v['id']] === 'not_set') { unset($this->shop->view['wpsg_mod_productvars']['data'][$k]); }
+								else if ($v['typ'] === '2' && !wpsg_isSizedString($p['wpsg_mod_productvars'][$v['id']])) { unset($this->shop->view['wpsg_mod_productvars']['data'][$k]); }
+	
+							}
+	
 						}
-
-					}
-
-					$this->shop->view['wpsg_mod_productvars']['i'] = $i;
-					$this->shop->view['wpsg_mod_productvars']['p'] = $p;
-					$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_productvars/overview_row.phtml');
-
-				}
-
-			}
-
+	
+						$this->shop->view['wpsg_mod_productvars']['i'] = $i;
+						$this->shop->view['wpsg_mod_productvars']['p'] = $p;
+						$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_productvars/overview_row.phtml');
+	
+					}
+	
+				}
+			}
 		} // public function overview_row(&$p, $i)
 
Index: /mods/wpsg_mod_produktattribute.class.php
===================================================================
--- /mods/wpsg_mod_produktattribute.class.php	(revision 7119)
+++ /mods/wpsg_mod_produktattribute.class.php	(revision 7120)
@@ -187,6 +187,10 @@
 		public function settings_save()
 		{
-
-
+			
+			$this->shop->update_option('wpsg_mod_produktattribute_showProduct', $_REQUEST['wpsg_mod_produktattribute_showProduct']);
+			$this->shop->update_option('wpsg_mod_produktattribute_showBasket', $_REQUEST['wpsg_mod_produktattribute_showBasket']);
+			$this->shop->update_option('wpsg_mod_produktattribute_showOverview', $_REQUEST['wpsg_mod_produktattribute_showOverview']);
+			$this->shop->update_option('wpsg_mod_produktattribute_showMail', $_REQUEST['wpsg_mod_produktattribute_showMail']);
+			
 		} // public function settings_save()
 
@@ -285,104 +289,114 @@
 
 		public function product_bottom(&$produkt_id, $template_index)
-		{
-
-			$this->shop->view['wpsg_mod_produktattribute']['data'] = $this->db->fetchAssoc("
-				SELECT
-					PAT.`value`,
-					AT.`id`,
-					AT.`auswahl`,
-					AT.`typ`,
-					AT.`autoshow`,
-					AT.`name`
-				FROM
-					`".WPSG_TBL_PRODUCTS_AT."` AS PAT
-						LEFT JOIN  `".WPSG_TBL_AT."` AS AT ON (PAT.`a_id` = AT.`id`)
-				WHERE
-					PAT.`p_id` = '".wpsg_q($produkt_id)."'
-				ORDER BY
-					AT.`pos` ASC, AT.`id` ASC
-			");
-
-			if (wpsg_isSizedArray($this->shop->view['wpsg_mod_produktattribute']['data']))
-			{
-
-				$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_produktattribute/produkt_bottom.phtml');
-
-			}
-
+		{ 
+			if ($this->shop->get_option('wpsg_mod_produktattribute_showProduct') != '1')
+			{
+	
+				$this->shop->view['wpsg_mod_produktattribute']['data'] = $this->db->fetchAssoc("
+					SELECT
+						PAT.`value`,
+						AT.`id`,
+						AT.`auswahl`,
+						AT.`typ`,
+						AT.`autoshow`,
+						AT.`name`
+					FROM
+						`".WPSG_TBL_PRODUCTS_AT."` AS PAT
+							LEFT JOIN  `".WPSG_TBL_AT."` AS AT ON (PAT.`a_id` = AT.`id`)
+					WHERE
+						PAT.`p_id` = '".wpsg_q($produkt_id)."'
+					ORDER BY
+						AT.`pos` ASC, AT.`id` ASC
+				");
+	
+				if (wpsg_isSizedArray($this->shop->view['wpsg_mod_produktattribute']['data']))
+				{
+	
+					$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_produktattribute/produkt_bottom.phtml');
+	
+				}
+			}
 		} // public function product_bottom(&$produkt_id, $template_index)
 
 		public function basket_row(&$p, $i)
 		{
-
-			$this->shop->view['wpsg_mod_produktattribute']['data'] = $this->db->fetchAssocField("
-				SELECT
-					AT.`id`
-				FROM
-					`".WPSG_TBL_AT."` AS AT
-				WHERE
-					AT.`autoshow` = '1'
-				ORDER BY
-					AT.`pos` ASC, AT.`id` ASC
-			");
-
-			$this->shop->view['wpsg_mod_produktattribute']['id'] = $this->shop->getProduktID($p['id']);
-			$this->shop->view['i'] = $i;
-
-			return $this->shop->render(WPSG_PATH_VIEW.'/mods/mod_produktattribute/basket_row.phtml');
-
+			if ($this->shop->get_option('wpsg_mod_produktattribute_showBasket') != '1')
+			{
+				
+				$this->shop->view['wpsg_mod_produktattribute']['data'] = $this->db->fetchAssocField("
+					SELECT
+						AT.`id`
+					FROM
+						`".WPSG_TBL_AT."` AS AT
+					WHERE
+						AT.`autoshow` = '1'
+					ORDER BY
+						AT.`pos` ASC, AT.`id` ASC
+				");
+	
+				$this->shop->view['wpsg_mod_produktattribute']['id'] = $this->shop->getProduktID($p['id']);
+				$this->shop->view['i'] = $i;
+	
+				return $this->shop->render(WPSG_PATH_VIEW.'/mods/mod_produktattribute/basket_row.phtml');
+
+			}
 		} // public function basket_row(&$p, $i)
 
 		public function overview_row(&$p, $i)
 		{
-
-			$this->shop->view['wpsg_mod_produktattribute']['data'] = $this->db->fetchAssocField("
-				SELECT
-					AT.`id`
-				FROM
-					`".WPSG_TBL_AT."` AS AT
-				WHERE
-					AT.`autoshow` = '1'
-				ORDER BY
-					AT.`pos` ASC, AT.`id` ASC
-			");
-
-			$this->shop->view['wpsg_mod_produktattribute']['id'] = $this->shop->getProduktID($p['id']);
-			$this->shop->view['i'] = $i;
-
-			return $this->shop->render(WPSG_PATH_VIEW.'/mods/mod_produktattribute/overview_row.phtml');
-
+			if ($this->shop->get_option('wpsg_mod_produktattribute_showOverview') != '1')
+			{
+				
+				$this->shop->view['wpsg_mod_produktattribute']['data'] = $this->db->fetchAssocField("
+					SELECT
+						AT.`id`
+					FROM
+						`".WPSG_TBL_AT."` AS AT
+					WHERE
+						AT.`autoshow` = '1'
+					ORDER BY
+						AT.`pos` ASC, AT.`id` ASC
+				");
+	
+				$this->shop->view['wpsg_mod_produktattribute']['id'] = $this->shop->getProduktID($p['id']);
+				$this->shop->view['i'] = $i;
+	
+				return $this->shop->render(WPSG_PATH_VIEW.'/mods/mod_produktattribute/overview_row.phtml');
+			}
 		} // public function overview_row(&$p, $i)
 
 		public function mail_row($i, $p)
 		{
-
-			$this->shop->view['wpsg_mod_produktattribute']['data'] = $this->db->fetchAssocField("
-				SELECT
-					`id`
-				FROM
-					`".WPSG_TBL_AT."`
-				WHERE
-					`autoshow` = '1'
-				ORDER BY
-					`pos` ASC, `id` ASC
-			");
-
-			$this->shop->view['wpsg_mod_produktattribute']['id'] = $this->shop->getProduktID($p['id']);
-			$this->shop->view['i'] = $i;
-
-			if ($this->shop->htmlMail === true)
-			{
-
-				$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_produktattribute/mail_row_html.phtml');
-
-			}
-			else
-			{
-
-				$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_produktattribute/mail_row.phtml');
-
-			}
-
+			if ($this->shop->get_option('wpsg_mod_produktattribute_showMail') != '1')
+			{
+				
+				$this->shop->view['wpsg_mod_produktattribute']['data'] = $this->db->fetchAssocField("
+					SELECT
+						`id`
+					FROM
+						`".WPSG_TBL_AT."`
+					WHERE
+						`autoshow` = '1'
+					ORDER BY
+						`pos` ASC, `id` ASC
+				");
+	
+				$this->shop->view['wpsg_mod_produktattribute']['id'] = $this->shop->getProduktID($p['id']);
+				$this->shop->view['i'] = $i;
+	
+				if ($this->shop->htmlMail === true)
+				{
+	
+					$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_produktattribute/mail_row_html.phtml');
+	
+				}
+				else
+				{
+	
+					$this->shop->render(WPSG_PATH_VIEW.'/mods/mod_produktattribute/mail_row.phtml');
+	
+				}
+				
+			}
 		} // public function mail_row($i, $p)
 
Index: /views/mods/mod_productvars/settings_edit.phtml
===================================================================
--- /views/mods/mod_productvars/settings_edit.phtml	(revision 7119)
+++ /views/mods/mod_productvars/settings_edit.phtml	(revision 7120)
@@ -46,27 +46,29 @@
 
 <br />
+
+<div>
+	<ul class="nav nav-tabs">
+  		<li role="presentation" class="active"><a href="#tab1" role="tab" data-toggle="tab"><?php echo __('Globale Produktvarianten', 'wpsg'); ?></a></li>
+  		<li role="presentation"><a href="#tab2" role="tab" data-toggle="tab"><?php echo __('Einstellungen', 'wpsg'); ?></a></li>  
+	</ul>
+	<div class="tab-content">
+		<div id="tab1" role="tabpanel" class="tab-pane active">
+			<div class="content" id="wpsg_pv_list">
+				<?php echo $this->mod->pv_list(); ?>
+			</div>
+
+			<br />
 	
-<div class="wpsg_productvars_form">
-	<?php echo wpsg_drawForm_Checkbox('wpsg_mod_productvars_showProduct', __('Produktvariable(n) im Produkttemplate abfragen', 'wpsg'), $this->get_option('wpsg_mod_productvars_showProduct'), array('help' => 'wpsg_mod_productvars_showProduct')); ?>
-</div>
-
-<br />
-
-<div class="wpsg_admin_box">		
-		  		
-	<div class="head">
-		<div class="title">
-			<div class="fulltab">
-				 
+			<a title="<?php echo __('Neue Produktvariable anlegen', 'wpsg'); ?>" href="" class="" onclick="return wpsg_addPV();"><span class="glyphicon wpsg-glyphicon glyphicon-plus"></span><?php echo __('Neue Produktvariable anlegen.', 'wpsg'); ?></a>
+		
+		</div>
+		<div id="tab2" role="tabpanel" class="tab-pane">
+			
+			<div class="wpsg_productvars_form">
+				<?php echo wpsg_drawForm_Checkbox('wpsg_mod_productvars_showProduct', __('Produktvariable(n) im Produkttemplate abfragen', 'wpsg'), $this->get_option('wpsg_mod_productvars_showProduct'), array('help' => 'wpsg_mod_productvars_showProduct')); ?>
+				<?php echo wpsg_drawForm_Checkbox('wpsg_mod_productvars_showBasket', __('Produktvariable(n) im Warenkorbtemplate darstellen', 'wpsg'), $this->get_option('wpsg_mod_productvars_showBasket'), array('help' => 'wpsg_mod_productvars_showBasket')); ?>
+				<?php echo wpsg_drawForm_Checkbox('wpsg_mod_productvars_showOverview', __('Produktvariable(n) im BestellÃŒbersichtstemplate darstellen', 'wpsg'), $this->get_option('wpsg_mod_productvars_showOverview'), array('help' => 'wpsg_mod_productvars_showOverview')); ?>
+				<?php echo wpsg_drawForm_Checkbox('wpsg_mod_productvars_showMail', __('Produktvariable(n) im Mailtemplate darstellen', 'wpsg'), $this->get_option('wpsg_mod_productvars_showMail'), array('help' => 'wpsg_mod_productvars_showMail')); ?>		
 			</div>
 		</div>
-	</div>
-	<div class="content" id="wpsg_pv_list">
-		<?php echo $this->mod->pv_list(); ?>
-	</div>
-
-	<br />
-	
-	<a title="<?php echo __('Neue Produktvariable anlegen', 'wpsg'); ?>" href="" class="" onclick="return wpsg_addPV();"><span class="glyphicon wpsg-glyphicon glyphicon-plus"></span><?php echo __('Neue Produktvariable anlegen.', 'wpsg'); ?></a>
-
 </div>
Index: /views/mods/mod_produktattribute/settings_edit.phtml
===================================================================
--- /views/mods/mod_produktattribute/settings_edit.phtml	(revision 7119)
+++ /views/mods/mod_produktattribute/settings_edit.phtml	(revision 7120)
@@ -85,29 +85,43 @@
 /* ]]> */</script>
 
-<!-- Modal fÃŒr Codeanzeige -->
-<div class="modal fade" id="wpsg_code_dialog" tabindex="-1" role="dialog">
-  <div class="modal-dialog" role="document">
-    <div class="modal-content">
-      <div class="modal-header">
-        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
-        <h4 class="modal-title" id="myModalLabel"><?php echo __('HTML Code Block', 'wpsg'); ?></h4>
-      </div>
-      <div class="modal-body">
-        
-      </div>
-      <div class="modal-footer">
-        <button type="button" class="btn btn-default" data-dismiss="modal"><?php echo __('SchlieÃen', 'wpsg'); ?></button> 
-      </div>
-    </div>
-  </div>
-</div>
-
-<div class="content" id="wpsg_pa_list">
-	<?php $this->mod->pa_listAction(); ?>
-</div>
-
-<div class="clear"></div>
-
 <br />
 
-<a href="#" onclick="return wpsg_addPA();"><span class="wpsg-glyphicon glyphicon glyphicon-plus"></span><?php echo __('Neues Produktattribut anlegen', 'wpsg'); ?></a>
+<div>
+	<ul class="nav nav-tabs">
+  		<li role="presentation" class="active"><a href="#tab1" role="tab" data-toggle="tab"><?php echo __('Globale Produktattribute', 'wpsg'); ?></a></li>
+  		<li role="presentation"><a href="#tab2" role="tab" data-toggle="tab"><?php echo __('Einstellungen', 'wpsg'); ?></a></li>  
+	</ul>
+	<div class="tab-content">
+		<div id="tab1" role="tabpanel" class="tab-pane active">
+			<!-- Modal fÃŒr Codeanzeige -->
+			<div class="modal fade" id="wpsg_code_dialog" tabindex="-1" role="dialog">
+			  <div class="modal-dialog" role="document">
+			    <div class="modal-content">
+			      <div class="modal-header">
+			        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
+			        <h4 class="modal-title" id="myModalLabel"><?php echo __('HTML Code Block', 'wpsg'); ?></h4>
+			      </div>
+			      <div class="modal-body"></div>
+			      <div class="modal-footer"><button type="button" class="btn btn-default" data-dismiss="modal"><?php echo __('SchlieÃen', 'wpsg'); ?></button></div>
+			    </div>
+			  </div>
+			</div>
+			
+			<div class="content" id="wpsg_pa_list"><?php $this->mod->pa_listAction(); ?></div>
+			
+			<div class="clear"></div>
+			
+			<br />
+			
+			<a href="#" onclick="return wpsg_addPA();"><span class="wpsg-glyphicon glyphicon glyphicon-plus"></span><?php echo __('Neues Produktattribut anlegen', 'wpsg'); ?></a>
+		</div>
+		<div id="tab2" role="tabpanel" class="tab-pane">
+			
+			<?php echo wpsg_drawForm_Checkbox('wpsg_mod_produktattribute_showProduct', __('Produktattribut(e) im Produkttemplate anzeigen', 'wpsg'), $this->get_option('wpsg_mod_produktattribute_showProduct'), array('help' => 'wpsg_mod_produktattribute_showProduct')); ?>
+			<?php echo wpsg_drawForm_Checkbox('wpsg_mod_produktattribute_showBasket', __('Produktattribut(e) im Warenkorbtemplate anzeigen', 'wpsg'), $this->get_option('wpsg_mod_produktattribute_showBasket'), array('help' => 'wpsg_mod_produktattribute_showBasket')); ?>
+			<?php echo wpsg_drawForm_Checkbox('wpsg_mod_produktattribute_showOverview', __('Produktattribut(e) im BestellÃŒbersichtstemplate anzeigen', 'wpsg'), $this->get_option('wpsg_mod_produktattribute_showOverview'), array('help' => 'wpsg_mod_produktattribute_showOverview')); ?>
+			<?php echo wpsg_drawForm_Checkbox('wpsg_mod_produktattribute_showMail', __('Produktattribut(e) in Mailemplates anzeigen', 'wpsg'), $this->get_option('wpsg_mod_produktattribute_showMail'), array('help' => 'wpsg_mod_produktattribute_showMail')); ?>	
+		
+		</div>
+	</div>
+</div>
