本文整理汇总了PHP中eZProductCollection::create方法的典型用法代码示例。如果您正苦于以下问题:PHP eZProductCollection::create方法的具体用法?PHP eZProductCollection::create怎么用?PHP eZProductCollection::create使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类eZProductCollection
的用法示例。
在下文中一共展示了eZProductCollection::create方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的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;
}
示例3: currentWishList
static function currentWishList($asObject = true)
{
$http = eZHTTPTool::instance();
$user = eZUser::currentUser();
$userID = $user->attribute('contentobject_id');
$WishListArray = eZPersistentObject::fetchObjectList(eZWishList::definition(), null, array("user_id" => $userID), null, null, $asObject);
$currentWishList = false;
if (count($WishListArray) == 0) {
$collection = eZProductCollection::create();
$collection->store();
$currentWishList = new eZWishList(array("user_id" => $userID, "productcollection_id" => $collection->attribute("id")));
$currentWishList->store();
} else {
$currentWishList = $WishListArray[0];
}
return $currentWishList;
}