本文整理汇总了PHP中tsmConfig::render_price方法的典型用法代码示例。如果您正苦于以下问题:PHP tsmConfig::render_price方法的具体用法?PHP tsmConfig::render_price怎么用?PHP tsmConfig::render_price使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tsmConfig
的用法示例。
在下文中一共展示了tsmConfig::render_price方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
?>
</li>
<li><?php
echo JText::_('Infant');
?>
:<span class="price"
data-a-sign="US$"><?php
echo tsmConfig::render_price($privategrouptrip->sale_price_infant);
?>
</span><?php
if ($privategrouptrip->sale_promotion_price_infant) {
?>
<span
class="price"
data-a-sign="US$"><?php
echo tsmConfig::render_price($privategrouptrip->sale_promotion_price_infant);
?>
</span><?php
}
?>
</li>
</ul>
</div>
<div class="span6">
<div class="row-fluid">
<div class="span6" style="text-align: center">
<?php
echo JText::_('text1');
?>
</div>
示例2:
?>
</li>
<li><?php
echo JText::_('Infant');
?>
:<span class="price"
data-a-sign="US$"><?php
echo tsmConfig::render_price($departure->sale_price_infant);
?>
</span><?php
if ($departure->sale_promotion_price_infant) {
?>
<span
class="price"
data-a-sign="US$"><?php
echo tsmConfig::render_price($departure->sale_promotion_price_infant);
?>
</span><?php
}
?>
</li>
</ul>
</div>
<div class="span6">
<div class="row-fluid">
<div class="span6" style="text-align: center">
<?php
echo JText::_('text1');
?>
</div>
示例3:
?>
</span>
</li>
</ul>
</div>
<div class="span6 area-booking">
<div class="row-fluid area-text">
<div class="span6 text-left" style="text-align: center">
<?php
echo JText::_('total price per person based on passenger age and tour date');
?>
</div>
<div class="span6 text-right" style="text-align: center">
<?php
echo JText::sprintf('Select private room+US$ %s/person', '<span class="price" data-a-sign="US$">' . tsmConfig::render_price($trip->price_extra_bed) . '</span><span class="price" data-a-sign="US$">' . tsmConfig::render_price($trip->sale_promotion_price_extra_bed) . '</span>');
?>
</div>
</div>
<div class="row-fluid area-button">
<div class="span12" style="text-align: center">
<button class="btn btn-primary book-now"
type="submit"><?php
echo JText::_('Available || Book now');
?>
</button>
</div>
</div>
</div>
</div>
</div>
示例4: B
</td>
<td>
<span class="icon-eye"></span>
</td>
<td>
B(<span class="price"
data-a-sign="US$"><?php
echo tsmConfig::render_price($row->sale_price_adult);
?>
</span>)
<?php
if ($row->promotion_price_adult) {
?>
P(<span class="price"
data-a-sign="US$"><?php
echo tsmConfig::render_price($row->sale_promotion_price_adult);
?>
</span>)
<?php
}
?>
</td>
<td>
<?php
echo JHtml::_('date', $row->departure_date, tsmConfig::$date_format);
?>
</span>
</td>
<td class="sale_period"><?php
echo JHtml::_('date', $row->sale_period_from, tsmConfig::$date_format);