本文整理汇总了PHP中Basket::addPriceToSummary方法的典型用法代码示例。如果您正苦于以下问题:PHP Basket::addPriceToSummary方法的具体用法?PHP Basket::addPriceToSummary怎么用?PHP Basket::addPriceToSummary使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Basket
的用法示例。
在下文中一共展示了Basket::addPriceToSummary方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: foreach
?>
</th>
<th class="goods-page-price"><?php
echo Yii::t('app', 'Цена');
?>
</th>
<th class="goods-page-total" colspan="2"><?php
echo Yii::t('app', 'Итоговая сумма');
?>
</th>
</tr>
<?php
foreach ($baskets as $i => $basket) {
?>
<?php
Basket::addPriceToSummary($basket->product, $basket->count);
?>
<tr>
<td class="goods-page-image">
<a href="<?php
echo $this->createUrl('/store/product/view/id/');
?>
/<?php
echo $basket->product->id;
?>
" class="fancybox-button" rel="photos-lib">
<?php
$imgUrl = $basket->product->getMainPicture() != NULL ? MSmarty::attachment_get_file_name($basket->product->getMainPicture()->secret_name, $basket->product->getMainPicture()->raw_name, $basket->product->getMainPicture()->file_ext, '_main', 'products') : Yii::app()->theme->baseUrl . '/public/store/default-no-image.png';
?>
<?php