]> git.mxchange.org Git - mailer.git/blobdiff - inc/libs/country_functions.php
Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / libs / country_functions.php
index be8658bd2a294e0cd28d7853fd3403c227f019dd..7254ff1022ec98c242822250f3a7eeb7a1655f76 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 04/30/2005 *
- * ===============                              Last change: 04/30/2005 *
+ * Mailer v0.2.1-FINAL                                Start: 04/30/2005 *
+ * ===================                          Last change: 04/30/2005 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : country_functions.php                            *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Funktionen fuer den Newsletter an die Gaeste     *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * 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 *
  ************************************************************************/
 
 // Some security stuff...
-if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
-{
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
-//
-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;
-       }
+if (!defined('__SECURITY')) {
+       die();
+} // END - if
+
+// Generate a human-readable country description with code
+function generateCountryInfo ($id) {
+       // Not found is the default
+       $ret = '{--COUNTRY_CODE_404--}';
+
+       // Load code and description
+       $result = sqlQueryEscaped("SELECT
+       `code`,
+       `descr`
+FROM
+       `{?_MYSQL_PREFIX?}_countries`
+WHERE
+       `id`=%s
+LIMIT 1",
+               array(bigintval($id)), __FUNCTION__, __LINE__);
+
+       // Is there an entry?
+       if (sqlNumRows($result) == 1) {
+               // Load entry
+               $content = sqlFetchArray($result);
+               //* DEBUG: */ print($id.'=<pre>'.print_r($content, TRUE).'</pre>');
+
+               // Construct human-readable description
+               $ret = sprintf("%s (%s)", $content['descr'], $content['code']);
+       } // END - if
+
+       // 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  = '<select name="country_code" class="form_select" size="1">';
+       $OUT .= generateOptions('countries', 'id', 'descr', $countryCode, 'code', $whereStatement);
+       $OUT .= '</select>';
+
+       // Return it
+       return $OUT;
+}
+
+// [EOF]
 ?>