Ja klar, ich brauche config.php in mein Erweiterung directory. Beispiel: /system/modules/mein_erweiterung/config/config.php.
Am ersten registrier ich meine frontend, backend module und neue frontend form widgets.
Am letzten habe ich mein eigenes Konfiguration Datei:
PHP-Code:
$GLOBALS['RESERVATION_FORMS']['availability']['fields'] = array(
'start_date' => array(
'inputType' => 'calendar',
'label' => &$GLOBALS['TL_LANG']['tl_reservations']['checkin_date'],
)
);
Aber das Problem ist $GLOBALS['TL_LANG']['tl_reservations'] noch nicht benutzbar ist. Kann ich auch tl_forms brauchen ohne es sichtbaar is im Backend?