-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make extension TYPO3 12 compatible, drop TYPO3 10 support
- Loading branch information
1 parent
e2c1219
commit 3c61cf5
Showing
5 changed files
with
15 additions
and
20 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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<?php | ||
defined('TYPO3_MODE') or die(); | ||
defined('TYPO3') or die(); | ||
|
||
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addStaticFile('html_purify', 'Configuration/TypoScript', 'HTML purify'); |
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
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 |
---|---|---|
@@ -1,23 +1,17 @@ | ||
<?php | ||
$EM_CONF[$_EXTKEY] = array( | ||
$EM_CONF[$_EXTKEY] = [ | ||
'title' => 'HTML pruify', | ||
'description' => 'Adds HTML purify functionality as viewhelper and service class to purify HTML code from unwanted HTML tags or HTML code containing XSS content.', | ||
'category' => 'fe', | ||
'author' => 'Sebastian Müller', | ||
'author_email' => 'sebastian.mueller@elementare-teilchen.de', | ||
'state' => 'stable', | ||
'internal' => '', | ||
'uploadfolder' => '0', | ||
'createDirs' => '', | ||
'clearCacheOnLoad' => 0, | ||
'version' => '1.2.0', | ||
'constraints' => array( | ||
'depends' => array( | ||
'typo3' => '10.4.0-11.5.99', | ||
), | ||
'conflicts' => array( | ||
), | ||
'suggests' => array( | ||
), | ||
), | ||
); | ||
'version' => '2.0.0', | ||
'constraints' => [ | ||
'depends' => [ | ||
'typo3' => '11.5.0-12.4.99' | ||
], | ||
'conflicts' => [], | ||
'suggests' => [] | ||
], | ||
]; |
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