initial commit
This commit is contained in:
18
Configuration/TypoScript/Base/constants.typoscript
Executable file
18
Configuration/TypoScript/Base/constants.typoscript
Executable file
@ -0,0 +1,18 @@
|
||||
plugin.tx_a2gmaps {
|
||||
view {
|
||||
# cat=altogether maps/file; type=string; label=Path to template root (FE)
|
||||
templateRootPath = EXT:a2g_maps/Resources/Private/Templates/
|
||||
# cat=altogether maps/file; type=string; label=Path to template partials (FE)
|
||||
partialRootPath = EXT:a2g_maps/Resources/Private/Partials/
|
||||
# cat=altogether maps/file; type=string; label=Path to template layouts (FE)
|
||||
layoutRootPath = EXT:a2g_maps/Resources/Private/Layouts/
|
||||
}
|
||||
settings {
|
||||
# cat=altogether maps//config; type=string; label=Path to default map marker
|
||||
defaultMapMarker = /typo3conf/ext/a2g_openlayers/data/icons/markerSolid.svg
|
||||
}
|
||||
#persistence {
|
||||
# cat=altogether maps//a; type=string; label=Default storage PID
|
||||
# storagePid =
|
||||
#}
|
||||
}
|
66
Configuration/TypoScript/Base/setup.typoscript
Executable file
66
Configuration/TypoScript/Base/setup.typoscript
Executable file
@ -0,0 +1,66 @@
|
||||
plugin.tx_a2gmaps_map {
|
||||
view {
|
||||
templateRootPaths.0 = EXT:a2g_maps/Resources/Private/Templates/
|
||||
templateRootPaths.1 = {$plugin.tx_a2gmaps.view.templateRootPath}
|
||||
partialRootPaths.0 = EXT:a2g_maps/Resources/Private/Partials/
|
||||
partialRootPaths.1 = {$plugin.tx_a2gmaps.view.partialRootPath}
|
||||
layoutRootPaths.0 = EXT:a2g_maps/Resources/Private/Layouts/
|
||||
layoutRootPaths.1 = {$plugin.tx_a2gmaps.view.layoutRootPath}
|
||||
}
|
||||
settings {
|
||||
defaultMapMarker = {$plugin.tx_a2gmaps.settings.defaultMapMarker}
|
||||
}
|
||||
#persistence {
|
||||
# storagePid = {$plugin.tx_a2gmaps.persistence.storagePid}
|
||||
#recursive = 1
|
||||
#}
|
||||
}
|
||||
|
||||
|
||||
page.includeJSFooter.a2gMapsConfig = EXT:a2g_maps/Resources/Public/JavaScript/a2gMap.config.js
|
||||
page.includeJSFooter.a2gMapsModule= EXT:a2g_maps/Resources/Public/JavaScript/a2gMap.min.js
|
||||
|
||||
page.includeJSFooter.a2gMapsConfig {
|
||||
disableCompression = 1
|
||||
excludeFromConcatenation = 1
|
||||
}
|
||||
page.includeJSFooter.a2gMapsModule {
|
||||
type = module
|
||||
crossorigin = true
|
||||
disableCompression = 1
|
||||
excludeFromConcatenation = 1
|
||||
}
|
||||
|
||||
page.includeCSS {
|
||||
a2gMaps = EXT:a2g_maps/Resources/Public/Scss/a2gMap.scss
|
||||
}
|
||||
|
||||
page.includeCSS.a2gMaps {
|
||||
disableCompression = 1
|
||||
excludeFromConcatenation = 1
|
||||
}
|
||||
|
||||
|
||||
a2gMapMarkers = PAGE
|
||||
a2gMapMarkers {
|
||||
typeNum = 1652369510
|
||||
config {
|
||||
disableAllHeaderCode = 1
|
||||
admPanel = 0
|
||||
additionalHeaders.10.header = Content-type:application/json
|
||||
xhtml_cleaning = 0
|
||||
debug = 0
|
||||
no_cache = 0
|
||||
}
|
||||
10 = USER
|
||||
10 {
|
||||
userFunc = TYPO3\CMS\Extbase\Core\Bootstrap->run
|
||||
extensionName = A2gMaps
|
||||
pluginName = map
|
||||
vendorName = Altogether
|
||||
controller = Map
|
||||
settings < plugin.tx_a2gmaps_map.settings
|
||||
persistence < plugin.tx_a2gmaps_map.persistence
|
||||
view < plugin.tx_a2gmaps_map.view
|
||||
}
|
||||
}
|
2
Configuration/TypoScript/constants.typoscript
Executable file
2
Configuration/TypoScript/constants.typoscript
Executable file
@ -0,0 +1,2 @@
|
||||
|
||||
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:a2g_maps/Configuration/TypoScript/Base/constants.typoscript">
|
3
Configuration/TypoScript/setup.typoscript
Executable file
3
Configuration/TypoScript/setup.typoscript
Executable file
@ -0,0 +1,3 @@
|
||||
|
||||
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:a2g_maps/Configuration/TypoScript/Base/setup.typoscript">
|
||||
#<INCLUDE_TYPOSCRIPT: source="FILE:EXT:a2g_maps/Configuration/TypoScript/GoogleAnalytics/setup.typoscript">
|
Reference in New Issue
Block a user