1 | <?php |
||
24 | class UtilityService |
||
25 | { |
||
26 | |||
27 | /** |
||
28 | * CacheService |
||
29 | * |
||
30 | * @var \TYPO3\CMS\Extbase\Service\CacheService |
||
31 | */ |
||
32 | protected $cacheService; |
||
33 | |||
34 | /** |
||
35 | * Settings Service |
||
36 | * |
||
37 | * @var \DERHANSEN\SfEventMgt\Service\SettingsService |
||
38 | */ |
||
39 | protected $settingsService; |
||
40 | |||
41 | /** |
||
42 | * UtilityService constructor. |
||
43 | * @param CacheService $cacheService |
||
44 | * @param SettingsService $settingsService |
||
45 | */ |
||
46 | public function __construct(CacheService $cacheService, SettingsService $settingsService) |
||
51 | 2 | ||
52 | 1 | /** |
|
53 | 1 | * Clears the cache of configured pages in TypoScript |
|
54 | 2 | * |
|
55 | * @param array $settings The settings |
||
56 | * |
||
57 | * @return void |
||
58 | */ |
||
59 | public function clearCacheForConfiguredUids($settings) |
||
66 | } |