本文整理汇总了PHP中eZBasket::definition方法的典型用法代码示例。如果您正苦于以下问题:PHP eZBasket::definition方法的具体用法?PHP eZBasket::definition怎么用?PHP eZBasket::definition使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类eZBasket
的用法示例。
在下文中一共展示了eZBasket::definition方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: fetchBasket
function fetchBasket()
{
$http = eZHTTPTool::instance();
$sessionID = $http->sessionID();
$basketList = eZPersistentObject::fetchObjectList(eZBasket::definition(), null, array("session_id" => $sessionID), null, null, true);
$currentBasket = false;
if (count($basketList) == 0) {
// If we don't have a stored basket we create a temporary
// one which can be returned.
$collection = eZProductCollection::create();
$currentBasket = new eZBasket(array("session_id" => $sessionID, "productcollection_id" => 0));
} else {
$currentBasket = $basketList[0];
}
if ($currentBasket === null) {
$result = array('error' => array('error_type' => 'kernel', 'error_code' => eZError::KERNEL_NOT_FOUND));
} else {
$result = array('result' => $currentBasket);
}
return $result;
}
示例2: currentBasket
static function currentBasket($asObject = true, $byOrderID = -1)
{
$basketList = array();
if ($byOrderID != -1) {
$basketList = eZPersistentObject::fetchObjectList(eZBasket::definition(), null, array("order_id" => $byOrderID), null, null, $asObject);
} else {
$http = eZHTTPTool::instance();
$sessionID = $http->sessionID();
$basketList = eZPersistentObject::fetchObjectList(eZBasket::definition(), null, array("session_id" => $sessionID), null, null, $asObject);
}
$currentBasket = false;
if (count($basketList) == 0) {
$db = eZDB::instance();
$db->begin();
$collection = eZProductCollection::create();
$collection->store();
$currentBasket = new eZBasket(array("session_id" => $sessionID, "productcollection_id" => $collection->attribute("id")));
$currentBasket->store();
$db->commit();
} else {
$currentBasket = $basketList[0];
}
return $currentBasket;
}