georgringer / country-backport
Backport of TYPO3 v12 country list to TYPO3 v11
Fund package maintenance!
georgringer
paypal.me/GeorgRinger/10
www.amazon.de/hz/wishlist/ls/8F573K08TSDG
Patreon
Installs: 1 913
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 2
Open Issues: 0
Type:typo3-cms-extension
Requires
- typo3/cms-backend: ^10.4 || ^11.5 || ^12
README
This extension is a backport of the country features from TYPO3 v12 to TYPO3 v11 + 10. Read all about it at https://github.com/TYPO3/typo3/blob/main/typo3/sysext/core/Documentation/Changelog/12.2/Feature-99618-ListOfCountriesInTheWorldAndTheirLocalizedNames.rst
Installation
Either use composer req georgringer/country-backport
or download the extension from the TER
Usage
Use this extension as in the core but with different namespaces:
<html xmlns:country="http://typo3.org/ns/GeorgRinger/CountryBackport/ViewHelpers"> <country:form.countrySelect name="country" value="AT" sortByOptionLabel="true" prioritizedCountries="{0: 'DE', 1: 'AT', 2: 'CH'}" /> </html>
$countryProvider = GeneralUtility::makeInstance(\GeorgRinger\CountryBackport\Country\CountryProvider); $france = $countryProvider->getByIsoCode('FR'); // or $france = $countryProvider->getByName('France'); // or $france = $countryProvider->getByAlpha3IsoCode('FRA'); // or $filter = new \GeorgRinger\CountryBackport\Country\CountryFilter(); $filter->setExcludeCountries(['DE', 'AT']); $filter->setOnlyCountries(['FR', 'IT', 'AT']); $list = $countryProvider->getFiltered($filter);