-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* compatibility TYPO3 9.5: move \TYPO3\CMS\Core\Utility\ExtensionMana…
…gementUtility::addStaticFile() into Configuration/TCA/Overrides/sys_template.php .
- Loading branch information
Showing
3 changed files
with
13 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
2020-05-02 Franz Holzinger <[email protected]> | ||
* bugfix: the tables tt_products_downloads and tt_products_downloads_language will come with version 2.13.2. | ||
* compatibility TYPO3 9.5: move \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addToInsertRecords() into the files Overrides/tablename.php | ||
* compatibility TYPO3 9.5: move \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile() into Configuration/TCA/Overrides/sys_template.php . | ||
|
||
2020-04-28 Franz Holzinger <[email protected]> | ||
* bugfix: The MatchCondition method checkShipping must read the recs and store them automatically. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
defined('TYPO3_MODE') || die('Access denied.'); | ||
|
||
call_user_func(function () { | ||
|
||
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile( TT_PRODUCTS_EXT, 'Configuration/TypoScript/PluginSetup/Main/', 'Shop System'); | ||
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(TT_PRODUCTS_EXT, 'Configuration/TypoScript/PluginSetup/Int/', 'Shop System Variable Content'); | ||
|
||
if (\TYPO3\CMS\Core\Utility\ExtensionManagementUtility:isLoaded( 'searchbox')) { | ||
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile(TT_PRODUCTS_EXT, 'Configuration/TypoScript/PluginSetup/Searchbox/', 'Shop System Search Box'); | ||
} | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters