本文整理汇总了PHP中Checkout::addToGearList方法的典型用法代码示例。如果您正苦于以下问题:PHP Checkout::addToGearList方法的具体用法?PHP Checkout::addToGearList怎么用?PHP Checkout::addToGearList使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Checkout
的用法示例。
在下文中一共展示了Checkout::addToGearList方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Checkout
//create checkout object
$co = new Checkout();
$co->setID($co_id);
$co->setTitle($title);
$co->setPerson($loggedInUser->user_id);
$co->setStart($co_start);
$co->setEnd($co_end);
$co->setDescription($description);
$co->setLocation($location);
$co->setDRNumber($dr_number);
foreach ($gearList as $gearItem) {
$gearObject = new Gear();
$gearObject->fetch($gearItem);
//echo ">1";
if ($gearObject->availableQty($co_start, $co_end) > 1) {
$co->addToGearList($gearItem, $gearQty[$i]);
$i++;
} else {
$co->addToGearList($gearItem, 1);
}
}
$co->finalizeCheckout();
$co_id = $co->getID();
header("Location: checkout.php?co_id={$co_id}");
}
}
}
}
//end if POST
//increment step
$step++;
示例2: Checkout
// to iterate thru gear qty array
//need to process quantities & finalize
//create checkout object
$co = new Checkout();
$co->setTitle($title);
$co->setPerson($loggedInUser->user_id);
$co->setStart($co_start);
$co->setEnd($co_end);
$co->setDescription($description);
$co->setLocation($location);
$co->setDRNumber($dr_number);
foreach ($gearList as $gearItem) {
$gearObject = new Gear();
$gearObject->fetch($gearItem);
if ($gearObject->availableQty($co_start, $co_end) > 1) {
$co->addToGearList($gearObject->getID(), $gearQty[$i]);
$i++;
} else {
$co->addToGearList($gearObject->getID(), 1);
}
}
$co->finalizeCheckout();
$co_id = $co->getID();
header("Location: checkout.php?co_id={$co_id}");
}
}
}
//increment step
$step++;
} else {
$step = 1;