From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: Re: [PATCH 4/5] locations-functions.pl: Allow get_locations() function to skip special locations. Date: Mon, 09 Nov 2020 11:49:59 +0000 Message-ID: <85186D0D-FFC5-4D2C-A783-4610A9DB92A4@ipfire.org> In-Reply-To: <20201107184724.3590-4-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============4311940893233969159==" List-Id: --===============4311940893233969159== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Hi, Where is this being used? -Michael > On 7 Nov 2020, at 18:47, Stefan Schantl wrote: >=20 > When adding "no_special_locations" to the function call as argument > the special locations liks "A1, A2, A3 etc" will not be added to the > returned array as available locations. >=20 > Signed-off-by: Stefan Schantl > --- > config/cfgroot/location-functions.pl | 16 ++++++++++++---- > 1 file changed, 12 insertions(+), 4 deletions(-) >=20 > diff --git a/config/cfgroot/location-functions.pl b/config/cfgroot/location= -functions.pl > index e8db4ba9b..fdf2c6efe 100644 > --- a/config/cfgroot/location-functions.pl > +++ b/config/cfgroot/location-functions.pl > @@ -177,16 +177,24 @@ sub get_full_country_name($) { >=20 > # Function to get all available locations. > sub get_locations() { > + my ($mode) =3D @_; > + > + # Set default mode to add_special_locations. > + $mode =3D $mode ? $mode : "add_special_locations"; > + > # Get locations which are stored in the location database. > - my @database_locations =3D &Location::database_countries($db_handle); > + my @locations =3D &Location::database_countries($db_handle); >=20 > - # Merge special locations array and the database locations array. > - my @locations =3D (@special_locations, @database_locations); > + # Check if the special locations should be added. > + if ($mode ne "no_special_locations") { > + # Merge special locations array and the database locations array. > + @locations =3D (@special_locations, @locations); > + } >=20 > # Sort locations array in alphabetical order. > my @sorted_locations =3D sort(@locations); >=20 > - # Return the array.. > + # Return the array. > return @sorted_locations; > } >=20 > --=20 > 2.20.1 >=20 --===============4311940893233969159==--