本文整理汇总了PHP中FormElement::getCurrencies方法的典型用法代码示例。如果您正苦于以下问题:PHP FormElement::getCurrencies方法的具体用法?PHP FormElement::getCurrencies怎么用?PHP FormElement::getCurrencies使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FormElement
的用法示例。
在下文中一共展示了FormElement::getCurrencies方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: sold
}
?>
<!-- | <a title="By 10 Users" >Reported as sold (10)</a>-->
<span>
<em>
<?php
if ($update) {
?>
<input type="text" style="width:60px;" required name="price" value="<?php
echo $product_info["price"];
?>
">
<select class="btn btn-slim" name="currencyID">
<?php
$currencies = FormElement::getCurrencies();
if ($currencies) {
foreach ($currencies as $currency) {
?>
<option <?php
echo $currency['currency'] == $product_info["currency"] ? "selected" : "";
?>
value="<?php
echo $currency['id'];
?>
"><?php
echo $currency['currency'];
?>
</option>
<?php
}