本文整理汇总了PHP中Cart66Common::getCountries方法的典型用法代码示例。如果您正苦于以下问题:PHP Cart66Common::getCountries方法的具体用法?PHP Cart66Common::getCountries怎么用?PHP Cart66Common::getCountries使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Cart66Common
的用法示例。
在下文中一共展示了Cart66Common::getCountries方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _e
</label>
</td>
</tr>
<tr valign="top" class="eligible_countries_block">
<th scope="row"><?php
_e('Ship to Countries', 'cart66');
?>
</th>
<td>
<select id="countries" name="countries[]" class="multiselect" multiple="multiple">
<?php
$countryList = Cart66Setting::getValue('countries');
$countryList = $countryList ? explode(',', $countryList) : array();
?>
<?php
foreach (Cart66Common::getCountries(true) as $code => $country) {
?>
<?php
$selected = in_array($code . '~' . $country, $countryList) ? 'selected="selected"' : '';
if (!empty($code)) {
?>
<option value="<?php
echo $code . '~' . $country;
?>
" <?php
echo $selected;
?>
><?php
echo $country;
?>
</option>
示例2: _e
?>
:</label>
<input type="text" id="billing-zip" name="billing[zip]" value="<?php
Cart66Common::showValue($b['zip']);
?>
" class="ajax-tax" />
</li>
<li>
<label for="billing-country" class="short"><?php
_e('Country', 'cart66');
?>
:</label>
<select title="country" id="billing-country" name="billing[country]" class="billing_countries">
<?php
foreach (Cart66Common::getCountries() as $code => $name) {
?>
<option value="<?php
echo $code;
?>
" <?php
if ($code == $billingCountryCode) {
echo 'selected="selected"';
}
?>
><?php
echo $name;
?>
</option>
<?php
}