コード例 #1
0
 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
0
ファイル: countries.php プロジェクト: Heart1010/JoomLeague
 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
0
 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;
 }