本文整理匯總了PHP中XLite\Model\AEntity::isDeleted方法的典型用法代碼示例。如果您正苦於以下問題:PHP AEntity::isDeleted方法的具體用法?PHP AEntity::isDeleted怎麽用?PHP AEntity::isDeleted使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類XLite\Model\AEntity
的用法示例。
在下文中一共展示了AEntity::isDeleted方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: removeEntity
/**
* Remove entity
*
* @param \XLite\Model\AEntity $entity Entity
*
* @return boolean
*/
protected function removeEntity(\XLite\Model\AEntity $entity)
{
$product = $entity->getProduct();
if ($this->isNeedUpdateStock() && !$entity->isDeleted()) {
// Return items to stock
$entity->changeAmount($entity->getAmount());
}
$attributes = $this->getAttributeValuesAsString($entity);
\XLite\Controller\Admin\Order::setOrderChanges('Removed items:' . $entity->getItemId(), sprintf('[%s] %s (%s x %d%s)', $product->getSku(), $product->getName(), static::formatPrice($entity->getPrice(), $entity->getOrder()->getCurrency(), true), $entity->getAmount(), $attributes ? ', ' . $attributes : ''));
return parent::removeEntity($entity);
}