$mCards->printBreadcrumbs($_GET["category"]);
echo "
".$current_category->getName()."
";
$allGoods = $mManagerMVP->getAllGoodsInActivePurchasesByCategoryId($current_category->getId());
if($allGoods!="")
{
$row=0;
echo "
";
for($i=0; $i".$goods->getName()."";
$mCards->printCardCategoryGoods($allGoods[$i], $current_user);
if($row == 4)
{
echo "
";
$row=0;
}
}
echo "
";
}
?>