forked from CMSExperts/warmup
-
Notifications
You must be signed in to change notification settings - Fork 6
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 #1 from tgaertner/bugfix/remove-use-statements
remove use statements from ext_localconf
- Loading branch information
Showing
1 changed file
with
3 additions
and
6 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 |
---|---|---|
@@ -1,19 +1,16 @@ | ||
<?php | ||
|
||
use B13\Warmup\Authentication\FrontendUserGroupInjector; | ||
use TYPO3\CMS\Core\Utility\ExtensionManagementUtility; | ||
|
||
ExtensionManagementUtility::addService( | ||
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addService( | ||
'warmup', | ||
'auth', | ||
FrontendUserGroupInjector::class, | ||
\B13\Warmup\Authentication\FrontendUserGroupInjector::class, | ||
[ | ||
'title' => 'Add Frontend Groups based on CLI Request Builder', | ||
'description' => 'Adds frontend usergroups by verifying data from the Frontend Request Builder.', | ||
'subtype' => 'getGroupsFE', | ||
'available' => false, | ||
'priority' => 90, | ||
'quality' => 90, | ||
'className' => FrontendUserGroupInjector::class, | ||
'className' => \B13\Warmup\Authentication\FrontendUserGroupInjector::class, | ||
] | ||
); |