本文整理匯總了PHP中Countries::sortCountryArray方法的典型用法代碼示例。如果您正苦於以下問題:PHP Countries::sortCountryArray方法的具體用法?PHP Countries::sortCountryArray怎麽用?PHP Countries::sortCountryArray使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Countries
的用法示例。
在下文中一共展示了Countries::sortCountryArray方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: getCountryOptions
public static function getCountryOptions($value_tag = 'value', $text_tag = 'text')
{
$db = Jfactory::getDBO();
$lang = JFactory::getLanguage();
$extension = "com_joomleague_countries";
$source = JPATH_ADMINISTRATOR . '/components/' . $extension;
$lang->load("{$extension}", JPATH_ADMINISTRATOR, null, false, false) || $lang->load($extension, $source, null, false, false) || $lang->load($extension, JPATH_ADMINISTRATOR, $lang->getDefault(), false, false) || $lang->load($extension, $source, $lang->getDefault(), false, false);
$query = "SELECT alpha3,name from #__joomleague_countries";
$db->setQuery($query);
$countries = $db->loadAssocList();
$options = array();
foreach ($countries as $k) {
$options[] = JHTML::_('select.option', $k['alpha3'], JText::_($k['name']), $value_tag, $text_tag);
}
//Now Sort the countries
$options = Countries::sortCountryArray($options, "text");
return $options;
}
示例2: getCountryOptions
public static function getCountryOptions($value_tag = 'value', $text_tag = 'text')
{
self::includeLanguageFile();
$countries = Countries::getCountries();
$options = array();
foreach ($countries as $k => $c) {
$options[] = JHtml::_('select.option', $k, JText::_($c['name']), $value_tag, $text_tag);
}
//Now Sort the countries
$options = Countries::sortCountryArray($options, "text");
return $options;
}
示例3: getCountryOptions
public static function getCountryOptions($value_tag = 'value', $text_tag = 'text')
{
$lang = JFactory::getLanguage();
$extension = "com_joomleague_countries";
$source = JPATH_ADMINISTRATOR . '/components/' . $extension;
$lang->load("{$extension}", JPATH_ADMINISTRATOR, null, false, false) || $lang->load($extension, $source, null, false, false) || $lang->load($extension, JPATH_ADMINISTRATOR, $lang->getDefault(), false, false) || $lang->load($extension, $source, $lang->getDefault(), false, false);
$countries = Countries::getCountries();
$options = array();
foreach ($countries as $k => $c) {
$options[] = JHTML::_('select.option', $k, JText::_($c['name']), $value_tag, $text_tag);
}
//Now Sort the countries
$options = Countries::sortCountryArray($options, "text");
return $options;
}