Reputation: 777
what and were is the file which holds the TYPO3 extension information? for example if an extension is activated or deactivated - and or what configurations are used or not used by the extension.
Upvotes: 0
Views: 54
Reputation: 796
Information about installed extensions is in typo3conf/PackageStates.php
. If the extension has configuration editable via the Extension manager, this configuration is saved in typo3conf/LocalConfiguration.php
. But typically extensions contain their default configuration inside the extensions's Configuration/TypoScript
directory. It is included as is and later can be modified by other extensions or in the main setup and stored in the database.
Upvotes: 4