本文整理汇总了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;
}