mailer project continued:
[mailer.git] / inc / libs / country_functions.php
index 66a2fed69445012b4baee3860f403e976ad04a9f..613132340139d63fd1834aa1017fd533aea2088b 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -66,5 +66,25 @@ function generateCountryInfo ($id) {
        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]
 ?>