[TYPO3-german] Ext:WecMap - Geocoding Status im TYPO3 Backend anzeigen
Jan Bartels
j.bartels at arcor.de
Mon Jan 2 23:47:38 CET 2017
Am 01.01.2017 um 16:59 schrieb Johannes C. Laxander:
> Mit der Extension WecMap kann der Geocoding Status für Datensätze im Backend
> angezeigt werden. Dazu ist in der Extension selbst ein Beispiel für fe_user
> enthalten und auch in der Doku gibt es ein Beispiel. An beiden Beispielen
> habe ich m ich orientiert ...
>
> Allerdings wir mir im Backend rein gar nichts angezeigt, und ich habe keine
> Idee mehr was die Ursache dafür sein könnte.
So, nun bin ich schlauer: Es hat offensichtlich eine Änderung im
TCA-Code im 7.x-Core gegeben, so dass die Kombination von passthrough
mit einer userFunc nicht mehr läuft. Die API-Dokumentation ist da ganz
eindeutig. Die Konfiguration Deiner Ext muss nun so aussehen
(Spaltennamen noch anpassen!):
'tx_wecmap_geocode' => array (
...
'config' => array(
'type' => 'user',
'userFunc' => 'JBartels\\WecMap\\Utility\\Backend->checkGeocodeStatus'
),
),
'tx_wecmap_map' => array (
...
'config' => array (
'type' => 'user',
'userFunc' => 'JBartels\\WecMap\\Utility\\Backend->drawMap'
),
),
Die Dokumentation werde ich natürlich anpassen.
Gruß,
Jan
More information about the TYPO3-german
mailing list