当前位置: 首页>>代码示例>>PHP>>正文


PHP AEntity::getProduct方法代码示例

本文整理汇总了PHP中XLite\Model\AEntity::getProduct方法的典型用法代码示例。如果您正苦于以下问题:PHP AEntity::getProduct方法的具体用法?PHP AEntity::getProduct怎么用?PHP AEntity::getProduct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在XLite\Model\AEntity的用法示例。


在下文中一共展示了AEntity::getProduct方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: modifyMoney

 /**
  * Modify money 
  * 
  * @param float                $value     Value
  * @param \XLite\Model\AEntity $model     Model
  * @param string               $property  Model's property
  * @param array                $behaviors Behaviors
  * @param string               $purpose   Purpose
  *  
  * @return void
  */
 public static function modifyMoney($value, \XLite\Model\AEntity $model, $property, array $behaviors, $purpose)
 {
     $obj = $model instanceof \XLite\Model\Product ? $model : $model->getProduct();
     return \XLite\Module\CDev\VAT\Logic\Product\Tax::getInstance()->deductTaxFromPrice($obj, $value);
 }
开发者ID:kingsj,项目名称:core,代码行数:16,代码来源:IncludedVAT.php

示例2: 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);
 }
开发者ID:kirkbauer2,项目名称:kirkxc,代码行数:18,代码来源:OrderItem.php

示例3: buildEntityURL

 /**
  * Build entity page URL
  *
  * @param \XLite\Model\AEntity $entity Entity
  * @param array                $column Column data
  *
  * @return string
  */
 protected function buildEntityURL(\XLite\Model\AEntity $entity, array $column)
 {
     if ('product' == $column[static::COLUMN_CODE]) {
         $result = \XLite\Core\Converter::buildURL('product', '', array('product_id' => $entity->getProduct()->getProductId()));
     } else {
         $result = parent::buildEntityURL($entity, $column);
     }
     return $result;
 }
开发者ID:kirkbauer2,项目名称:kirkxc,代码行数:17,代码来源:Review.php

示例4: getAttributeValues

 /**
  * Return attribute values
  *
  * @param \XLite\Model\AEntity $model Model
  *
  * @return array
  */
 protected static function getAttributeValues(\XLite\Model\AEntity $model)
 {
     return $model instanceof \XLite\Module\XC\ProductVariants\Model\ProductVariant ? $model->getProduct()->getAttrValues() : parent::getAttributeValues($model);
 }
开发者ID:kirkbauer2,项目名称:kirkxc,代码行数:11,代码来源:AttributeSurcharge.php

示例5: getObject

 /**
  * Modify money
  *
  * @param \XLite\Model\AEntity $model Model
  *
  * @return \XLite\Model\AEntity
  */
 protected static function getObject(\XLite\Model\AEntity $model)
 {
     return $model instanceof \XLite\Model\Product ? $model : $model->getProduct();
 }
开发者ID:kirkbauer2,项目名称:kirkxc,代码行数:11,代码来源:MoneyModificator.php


注:本文中的XLite\Model\AEntity::getProduct方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。