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


PHP tsmConfig::render_price方法代码示例

本文整理汇总了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>
开发者ID:cuongnd,项目名称:etravelservice,代码行数:31,代码来源:default.php

示例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>
开发者ID:cuongnd,项目名称:etravelservice,代码行数:31,代码来源:default.php

示例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>
开发者ID:cuongnd,项目名称:etravelservice,代码行数:31,代码来源:jontgrouptrip.php

示例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);
开发者ID:cuongnd,项目名称:etravelservice,代码行数:31,代码来源:default.php


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