georgringer/country-backport
最新稳定版本:0.0.2
Composer 安装命令:
composer require georgringer/country-backport
包简介
Backport of TYPO3 v12 country list to TYPO3 v11
README 文档
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);
统计信息
- 总下载量: 3.32k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0-or-later
- 更新时间: 2023-01-20