Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Classes/Powermail/Finisher/CleverReach.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class CleverReach extends AbstractFinisher

/**
* Because of T3 7 compatibility use this class
* @var \TYPO3\CMS\Extbase\Service\TypoScriptService
* @var \TYPO3\CMS\Core\TypoScript\TypoScriptService
* @TYPO3\CMS\Extbase\Annotation\Inject
*/
protected $typoScriptService;
Expand Down Expand Up @@ -119,9 +119,9 @@ public function cleverreachFinisher()


/**
* Initialize
* @return void
*/
public function initializeFinisher()
public function initializeFinisher(): void
{
$configuration = $this->typoScriptService->convertPlainArrayToTypoScriptArray($this->settings);
if (!empty($configuration['dbEntry.'])) {
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"type": "typo3-cms-extension",
"homepage": "http://wappler.systems",
"license": "GPL-2.0-or-later",
"version": "0.1.7",
"require": {
"typo3/cms-core": "^7.6 || ^8.7 || ^9.5"
"typo3/cms-core": "^7.6 || ^8.7 || ^9.5 || ^10.4"
},
"replace": {
"svewap/cleverreach": "self.version"
Expand Down
4 changes: 2 additions & 2 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
'author' => 'Sven Wappler',
'author_email' => 'typo3YYYY@wappler.systems',
'author_company' => 'WapplerSystems',
'version' => '0.1.6',
'version' => '0.1.7',
'constraints' => [
'depends' => [
'typo3' => '7.6.0-9.5.99',
'typo3' => '7.6.0-10.4.99',
'php' => '7.0.0-7.2.99',
],
'conflicts' => [],
Expand Down
2 changes: 1 addition & 1 deletion ext_tables.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
}

//# Add page TSConfig
$pageTsConfig = '<INCLUDE_TYPOSCRIPT: source="FILE:EXT:cleverreach/Configuration/TypoScript/TSconfig/Page/powermail.tsconfig">';
$pageTsConfig = '<INCLUDE_TYPOSCRIPT: source="FILE:EXT:cleverreach/Configuration/TypoScript/TsConfig/Page/powermail.tsconfig">';
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig($pageTsConfig);


Expand Down