From: Stefan Schantl <stefan.schantl@ipfire.org>
To: development@lists.ipfire.org
Subject: [PATCH 3/5] location-functions.pl: Add get_continent_code() function.
Date: Sat, 07 Nov 2020 19:47:22 +0100 [thread overview]
Message-ID: <20201107184724.3590-3-stefan.schantl@ipfire.org> (raw)
In-Reply-To: <20201107184724.3590-1-stefan.schantl@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 971 bytes --]
This tiny function is used to get the continent code for a given
country code.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
config/cfgroot/location-functions.pl | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/config/cfgroot/location-functions.pl b/config/cfgroot/location-functions.pl
index 483703016..e8db4ba9b 100644
--- a/config/cfgroot/location-functions.pl
+++ b/config/cfgroot/location-functions.pl
@@ -190,6 +190,16 @@ sub get_locations() {
return @sorted_locations;
}
+# Function to get the continent code of a given country code.
+sub get_continent_code($) {
+ my ($country_code) = @_;
+
+ # Use location module to grab the continent code.
+ my $continent_code = &Location::get_continent_code($db_handle, $country_code);
+
+ return $continent_code;
+}
+
# Function to check if a given address has one ore more special flags.
sub address_has_flags($) {
my ($address) = @_;
--
2.20.1
next prev parent reply other threads:[~2020-11-07 18:47 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-11-07 18:47 [PATCH 1/5] location-functions.pl: Use a single script-wide db_handle Stefan Schantl
2020-11-07 18:47 ` [PATCH 2/5] location-functions.pl: Add END block to release the database handle Stefan Schantl
2020-11-07 18:47 ` Stefan Schantl [this message]
2020-11-07 18:47 ` [PATCH 4/5] locations-functions.pl: Allow get_locations() function to skip special locations Stefan Schantl
2020-11-09 11:49 ` Michael Tremer
2020-11-07 18:47 ` [PATCH 5/5] Adjust CGI files to work with latest location-function.pl changes Stefan Schantl
2020-11-10 12:18 ` Aw: " Bernhard Bitsch
2020-11-08 19:36 ` Aw: [PATCH 1/5] location-functions.pl: Use a single script-wide db_handle Bernhard Bitsch
2020-11-09 11:35 ` Michael Tremer
2020-11-09 12:13 ` Aw: " Bernhard Bitsch
2020-11-09 14:04 ` Michael Tremer
2020-11-09 15:16 ` Aw: " Bernhard Bitsch
2020-11-09 17:03 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20201107184724.3590-3-stefan.schantl@ipfire.org \
--to=stefan.schantl@ipfire.org \
--cc=development@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox