Index: lib/class.tx_commerce_pibase.php
===================================================================
--- lib/class.tx_commerce_pibase.php	(Revision 51043)
+++ lib/class.tx_commerce_pibase.php	(Arbeitskopie)
@@ -797,7 +797,12 @@
 	 	$content='';
 	 	$template = $this->cObj->getSubpart($this->templateCode, $subpartMarker);
 		
-	 
+	 	$hookObjectsArr = array();
+		if (is_array ($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['commerce/lib/class.tx_commerce_pibase.php']['makeBasketView'])) {
+			foreach ($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['commerce/lib/class.tx_commerce_pibase.php']['makeBasketView'] as $classRef) {
+				$hookObjectsArr[] = &t3lib_div::getUserObj($classRef);
+			}
+		}
 	 	
 		if(!is_array($lineTemplate)) {
 			$temp = $lineTemplate;
@@ -855,6 +860,18 @@
 			$content = $this->cObj->substituteSubpart($template,'###LISTING_ARTICLE###','');
 		}
 
+		foreach($hookObjectsArr as $hookObj) {
+			if (method_exists($hookObj, 'postBasketView')) {
+				$params = array(
+					'basketObj'    => &$basketObj,
+					'articletypes' => $articletypes,
+					'lineTemplate' => $lineTemplate,
+					'template'     => $template,
+				);
+				$content =  $hookObj->postBasketView($content, $params, $this);
+			}
+		}
+
 	 	$content = $this->cObj->substituteSubpart(
 	 			$content,
 	 			'###LISTING_BASKET_WEB###',
