X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fcountry_functions.php;h=80a4c1ef856f82d70cab876c1654112fe2f8d473;hb=15e0995f7a4a4b2c9b1b1a9273f785cf13605829;hp=6f31bb5102e47ac9cebdf17eb13c3a5c26b813b4;hpb=963e55ca1ea79e255f235e359cde9f7862191dc5;p=mailer.git diff --git a/inc/libs/country_functions.php b/inc/libs/country_functions.php index 6f31bb5102..80a4c1ef85 100644 --- a/inc/libs/country_functions.php +++ b/inc/libs/country_functions.php @@ -1,7 +1,7 @@ '.print_r($content, TRUE).''); + + // Construct human-readable description + $ret = sprintf('%s (%s)', $content['descr'], $content['code']); + } // END - if -// -function COUNTRY_GENERATE_INFO($ID) -{ - $result = SQL_QUERY_ESC("SELECT code, descr FROM "._MYSQL_PREFIX."_countries WHERE id=%s LIMIT 1", - array(bigintval($ID)), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == 1) - { - list($code, $descr) = SQL_FETCHROW($result); - SQL_FREERESULT($result); - $ret = $descr." (".$code.")"; - } - else - { - // Not found! - $ret = COUNTRY_NOT_FOUND; - } + // Free the result + sqlFreeResult($result); // Return info return $ret; } -// + +// Adds a country code selection box +function addCountryCodeSelectionBox ($countryCode = NULL) { + // The admin may see all + $whereStatement = "WHERE `is_active`='Y'"; + + // Is admin? + if (isAdmin()) { + // Then display all codes + $whereStatement = ''; + } // END - if + + // Generate the HTML code + $OUT = ''; + + // Return it + return $OUT; +} + +// [EOF] ?>