Configuration

This section describes the configuration options for XLS importer.

Adding configuration needs a TCA defined table.

Extension Setup

Go to Install Tool > Settings > Extension Settings and add your tables as comma separated list.

Module Setup

Add the TypoScript setup as usual to your sitepackage extension configuration file mysitepackage/Configuration/TSConfig/PageTS/tx_xlsimport.tsconfig:

module.tx_xlsimport {
    settings {
        allowedTables := addToList(tt_address)
    }
}

Copied!

Every TCA defined table could be used. Field names are taken by locallang files, so localization is done.

Definition of allowed tables can be done either way. Both lists will be merged afterwards.