-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from t3solution/2.0.2
Security release v2.0.2
- Loading branch information
Showing
4 changed files
with
104 additions
and
58 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
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,19 +1,38 @@ | ||
<?php | ||
|
||
$EM_CONF[$_EXTKEY] = [ | ||
'title' => 'Content Consent', | ||
'description' => 'Provides a content consent plugin to load any content elements and custom plugins by ajax without jQuery! So you can include Google Maps, YouTube- or Vimeo videos GDPR/DSGVO compliant. Best used with Bootstrap 5', | ||
'category' => 'plugin', | ||
'author' => 'Helmut Hackbarth', | ||
'author_email' => 'typo3@t3solution.de', | ||
'state' => 'stable', | ||
'clearCacheOnLoad' => 0, | ||
'version' => '2.0.1', | ||
'constraints' => [ | ||
'depends' => [ | ||
'typo3' => '12.4.0-12.9.99', | ||
], | ||
'conflicts' => [], | ||
'suggests' => [], | ||
], | ||
]; | ||
/*************************************************************** | ||
* Extension Manager/Repository config file for ext "content_consent". | ||
* | ||
* Auto generated 02-10-2023 10:17 | ||
* | ||
* Manual updates: | ||
* Only the data in the array - everything else is removed by next | ||
* writing. "version" and "dependencies" must not be touched! | ||
***************************************************************/ | ||
|
||
$EM_CONF[$_EXTKEY] = array ( | ||
'title' => 'Content Consent', | ||
'description' => 'Provides a content consent plugin to load any content elements and custom plugins by ajax without jQuery! So you can include Google Maps, YouTube- or Vimeo videos GDPR/DSGVO compliant. Best used with Bootstrap 5', | ||
'category' => 'plugin', | ||
'version' => '2.0.2', | ||
'state' => 'stable', | ||
'uploadfolder' => false, | ||
'clearcacheonload' => false, | ||
'author' => 'Helmut Hackbarth', | ||
'author_email' => 'typo3@t3solution.de', | ||
'author_company' => NULL, | ||
'constraints' => | ||
array ( | ||
'depends' => | ||
array ( | ||
'typo3' => '12.4.0-12.9.99', | ||
), | ||
'conflicts' => | ||
array ( | ||
), | ||
'suggests' => | ||
array ( | ||
), | ||
), | ||
); | ||
|