X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=inline;f=inc%2Flibs%2Fcountry_functions.php;h=7254ff1022ec98c242822250f3a7eeb7a1655f76;hb=6d08952d672c5a5de7d8522f894a5665599a2a4a;hp=a001eef4658d86c5273e481dce3e7586324b5fdf;hpb=c3b4eaf29946349ff058691db2dcb615a5379bb2;p=mailer.git diff --git a/inc/libs/country_functions.php b/inc/libs/country_functions.php index a001eef465..7254ff1022 100644 --- a/inc/libs/country_functions.php +++ b/inc/libs/country_functions.php @@ -16,8 +16,8 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -46,25 +46,52 @@ function generateCountryInfo ($id) { $ret = '{--COUNTRY_CODE_404--}'; // Load code and description - $result = SQL_QUERY_ESC("SELECT `code`, `descr` FROM `{?_MYSQL_PREFIX?}_countries` WHERE `id`=%s LIMIT 1", + $result = sqlQueryEscaped("SELECT + `code`, + `descr` +FROM + `{?_MYSQL_PREFIX?}_countries` +WHERE + `id`=%s +LIMIT 1", array(bigintval($id)), __FUNCTION__, __LINE__); // Is there an entry? - if (SQL_NUMROWS($result) == 1) { + if (sqlNumRows($result) == 1) { // Load entry - $content = SQL_FETCHARRAY($result); - //* DEBUG: */ print($id.'=
'.print_r($content, true).'
'); + $content = sqlFetchArray($result); + //* DEBUG: */ print($id.'=
'.print_r($content, TRUE).'
'); // Construct human-readable description $ret = sprintf("%s (%s)", $content['descr'], $content['code']); } // END - if // Free the result - SQL_FREERESULT($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] ?>