Subversion-Projekte lars-tiefland.ci

Revision

Revision 2010 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 2010 Revision 2011
Zeile 1... Zeile 1...
1
<?php
1
<?php
Zeile 2... Zeile 2...
2
 
2
 
Zeile 3... Zeile 3...
3
// $Id: weban_helper.php 2010 2017-02-04 23:28:38Z lars $
3
// $Id: weban_helper.php 2011 2017-02-04 23:30:38Z lars $
4
 
4
 
5
if (!defined("CONTINUE_ON_ERROR"))
5
if (!defined("CONTINUE_ON_ERROR"))
6
{
6
{
Zeile 1280... Zeile 1280...
1280
}
1280
}
Zeile 1281... Zeile 1281...
1281
 
1281
 
1282
function getBasketGewicht()
1282
function getBasketGewicht()
1283
{
1283
{
1284
	$gewicht = 0;
1284
	$gewicht = 0;
1285
	foreach($_SESSION["SHOP"]["BASKET"] as $bItem )
1285
	foreach ($_SESSION["SHOP"]["BASKET"] as $bItem)
1286
	{
1286
	{
1287
		$gewicht+=$bItem["gewicht"];
1287
		$gewicht += $bItem["gewicht"];
1288
	}
1288
	}
1289
	return $gewicht;
1289
	return $gewicht;
Zeile 1290... Zeile 1290...
1290
}
1290
}