JOHN LENNON
items);
$items=array_slice($items,0,3);
if ($basket->get_quantity() == 0) {
echo 'Der Warenkorb ist leer.';
} else {
foreach ($items as $item) {
echo ($item->quantity);
echo (' x ');
$caption=$item->caption;
if (strlen($caption)>27) {
$caption=htmlentities(substr($caption,0,25)).'…';
} else {
$caption=htmlentities($caption);
}
echo ($caption);
echo ('
');
}
}
?>