Initial commit - Typo3 11.5.41
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
## Configuring the Static Info Manager backend module
|
||||
module.tx_staticinfotables {
|
||||
## Paths for Manager templates
|
||||
view {
|
||||
templateRootPaths.0 = EXT:static_info_tables/Resources/Private/Templates/
|
||||
partialRootPaths.0 = EXT:static_info_tables/Resources/Private/Partials/
|
||||
layoutRootPaths.0 = EXT:static_info_tables/Resources/Private/Layouts/
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,20 @@
|
||||
plugin.tx_staticinfotables_pi1 {
|
||||
|
||||
# cat=plugin.tx_staticinfotables_pi1//3; type=user[SJBR\StaticInfoTables\Configuration\TypoScript\ConfigurationHelper->buildEntitySelector];; label= Default currency: ISO alpha-3 code of the default currency used to format an amount.
|
||||
currencyCode = EUR
|
||||
|
||||
# cat=plugin.tx_staticinfotables_pi1//1; type=user[SJBR\StaticInfoTables\Configuration\TypoScript\ConfigurationHelper->buildEntitySelector];; label= Default country: ISO alpha-3 code of the default selected country in the drop-down selector.
|
||||
countryCode =
|
||||
|
||||
# cat=plugin.tx_staticinfotables_pi1//5; type=string; label= Allowed countries: ISO alpha-3 codes of the countries which are allowed in the drop-down selector. The order of the countries will remain in the output.
|
||||
countriesAllowed =
|
||||
|
||||
# cat=plugin.tx_staticinfotables_pi1//2; type=user[SJBR\StaticInfoTables\Configuration\TypoScript\ConfigurationHelper->buildEntitySelector];; label= Default country zone: Code of the default selected country zone in drop-down selector.
|
||||
countryZoneCode =
|
||||
|
||||
# cat=plugin.tx_staticinfotables_pi1//4; type=user[SJBR\StaticInfoTables\Configuration\TypoScript\ConfigurationHelper->buildEntitySelector];; label= Default language: ISO alpha-2 code of the default selected language in drop-down selector.
|
||||
languageCode =
|
||||
|
||||
# cat=plugin.tx_staticinfotables_pi1//6; type=string; label= Onchange attribute : Value of onchange attribute of drop-down selectors, when present.
|
||||
onChangeAttribute = javascript:this.form.submit();
|
||||
}
|
||||
@@ -0,0 +1,80 @@
|
||||
plugin.tx_staticinfotables.settings {
|
||||
countryCode = {$plugin.tx_staticinfotables_pi1.countryCode}
|
||||
countriesAllowed = {$plugin.tx_staticinfotables_pi1.countriesAllowed}
|
||||
countryZoneCode = {$plugin.tx_staticinfotables_pi1.countryZoneCode}
|
||||
currencyCode = {$plugin.tx_staticinfotables_pi1.currencyCode}
|
||||
languageCode = {$plugin.tx_staticinfotables_pi1.languageCode}
|
||||
onChangeAttribute = {$plugin.tx_staticinfotables_pi1.onChangeAttribute}
|
||||
|
||||
addressFormat {
|
||||
## See www.upu.int
|
||||
## Semi-colon (;)-separated address lines
|
||||
## Examples of address format 1: Austria, Denmark, France, Germany, Russia
|
||||
1 = %street;%zip %city;%countryName
|
||||
|
||||
## Examples of address format 2: India
|
||||
2 = %street;%city %zip;%countryName
|
||||
|
||||
## Examples of address format 3: Australia, USA
|
||||
3 = %street;%city %countrySubdivisionCode %zip;%countryName
|
||||
|
||||
## Example of address format 4: Canada
|
||||
4 = %street;%city (%countrySubdivisionName) %zip;%countryName
|
||||
|
||||
## Example of address format 5: Great Britain
|
||||
5 = %street;%city;%zip%countryName
|
||||
|
||||
## Example of address format 6: Mexico
|
||||
6 = %street;%zip %city, %countrySubdivisionCode;%countryName
|
||||
|
||||
## Example of address format 7: Italy
|
||||
7 = %street;%zip %city %countrySubdivisionCode;%countryName
|
||||
|
||||
## Example of address format 8: Spain
|
||||
8 = %street;%zip %city (%countrySubdivisionName);%countryName
|
||||
|
||||
## Example of address format 9: Brazil
|
||||
9 = %street;%city - %countrySubdivisionCode;%zip;%countryName
|
||||
}
|
||||
}
|
||||
|
||||
plugin.tx_staticinfotables_pi1 {
|
||||
|
||||
countryCode = {$plugin.tx_staticinfotables_pi1.countryCode}
|
||||
countriesAllowed = {$plugin.tx_staticinfotables_pi1.countriesAllowed}
|
||||
countryZoneCode = {$plugin.tx_staticinfotables_pi1.countryZoneCode}
|
||||
currencyCode = {$plugin.tx_staticinfotables_pi1.currencyCode}
|
||||
languageCode = {$plugin.tx_staticinfotables_pi1.languageCode}
|
||||
onChangeAttribute = {$plugin.tx_staticinfotables_pi1.onChangeAttribute}
|
||||
|
||||
addressFormat {
|
||||
## See www.upu.int
|
||||
## Semi-colon (;)-separated address lines
|
||||
## Examples of address format 1: Austria, Denmark, France, Germany, Russia
|
||||
1 = %street;%zip %city;%countryName
|
||||
|
||||
## Examples of address format 2: India
|
||||
2 = %street;%city %zip;%countryName
|
||||
|
||||
## Examples of address format 3: Australia, USA
|
||||
3 = %street;%city %countrySubdivisionCode %zip;%countryName
|
||||
|
||||
## Example of address format 4: Canada
|
||||
4 = %street;%city (%countrySubdivisionName) %zip;%countryName
|
||||
|
||||
## Example of address format 5: Great Britain
|
||||
5 = %street;%city;%zip%countryName
|
||||
|
||||
## Example of address format 6: Mexico
|
||||
6 = %street;%zip %city, %countrySubdivisionCode;%countryName
|
||||
|
||||
## Example of address format 7: Italy
|
||||
7 = %street;%zip %city %countrySubdivisionCode;%countryName
|
||||
|
||||
## Example of address format 8: Spain
|
||||
8 = %street;%zip %city (%countrySubdivisionName);%countryName
|
||||
|
||||
## Example of address format 9: Brazil
|
||||
9 = %street;%city - %countrySubdivisionCode;%zip;%countryName
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user