Rename plugin settings

This commit is contained in:
Dirk 2019-08-13 11:41:41 +02:00
parent 662b088daa
commit e9745ebd85
3 changed files with 7 additions and 7 deletions

View file

@ -189,7 +189,7 @@ class DestinationDataImportService {
$this->restLicenseKey = $this->settings['destinationData']['license']; $this->restLicenseKey = $this->settings['destinationData']['license'];
$this->restType = $this->settings['destinationData']['restType']; $this->restType = $this->settings['destinationData']['restType'];
$this->restLimit = $this->settings['destinationData']['restLimit']; $this->restLimit = $this->settings['destinationData']['restLimit'];
$this->restTemplate = $this->settings['destinationData']['dataTemplate']; $this->restTemplate = $this->settings['destinationData']['restTemplate'];
$this->sysCategoriesPid = $this->settings['destinationData']['categoriesPid']; $this->sysCategoriesPid = $this->settings['destinationData']['categoriesPid'];
} }

View file

@ -19,11 +19,11 @@ plugin.tx_events {
# cat=plugin.tx_events//a; type=string; label=License # cat=plugin.tx_events//a; type=string; label=License
license = ***REMOVED*** license = ***REMOVED***
# cat=plugin.tx_events//a; type=string; label=Data Type # cat=plugin.tx_events//a; type=string; label=Data Type
dataType = Event restType = Event
# cat=plugin.tx_events//a; type=string; label=Data Limit # cat=plugin.tx_events//a; type=string; label=Data Limit
dataLimit = 200 restLimit = 200
# cat=plugin.tx_events//a; type=string; label=Data Template # cat=plugin.tx_events//a; type=string; label=Data Template
dataTemplate = ET2014A.json restTemplate = ET2014A.json
# cat=plugin.tx_events//a; type=string; Label=Category Storage # cat=plugin.tx_events//a; type=string; Label=Category Storage
categoriesPid = 54 categoriesPid = 54
} }

View file

@ -48,9 +48,9 @@ plugin.tx_events {
destinationData { destinationData {
restUrl = {$plugin.tx_events.settings.destinationData.restUrl} restUrl = {$plugin.tx_events.settings.destinationData.restUrl}
license = {$plugin.tx_events.settings.destinationData.license} license = {$plugin.tx_events.settings.destinationData.license}
dataType = {$plugin.tx_events.settings.destinationData.datType} restType = {$plugin.tx_events.settings.destinationData.restType}
dataLimit = {$plugin.tx_events.settings.destinationData.dataLimit} restLimit = {$plugin.tx_events.settings.destinationData.restLimit}
dataTemplate = {$plugin.tx_events.settings.destinationData.dataTemplate} restTemplate = {$plugin.tx_events.settings.destinationData.restTemplate}
categoriesPid = {$plugin.tx_events.settings.destinationData.categoriesPid} categoriesPid = {$plugin.tx_events.settings.destinationData.categoriesPid}
} }
} }