1 | <?php |
||
20 | class ExternalTimeTable extends AbstractTimeTable |
||
21 | { |
||
22 | |||
23 | /** |
||
24 | * Ical service. |
||
25 | * |
||
26 | * @var ICalServiceInterface |
||
27 | */ |
||
28 | protected $iCalService; |
||
29 | |||
30 | /** |
||
31 | * Inject ical service. |
||
32 | * |
||
33 | * @param ICalServiceInterface $iCalService |
||
34 | */ |
||
35 | public function injectICalServiceInterface(ICalServiceInterface $iCalService) |
||
39 | |||
40 | /** |
||
41 | * Modify the given times via the configuration. |
||
42 | * |
||
43 | * @param array $times |
||
44 | * @param Configuration $configuration |
||
45 | * |
||
46 | * @throws \TYPO3\CMS\Core\Exception |
||
47 | */ |
||
48 | public function handleConfiguration(array &$times, Configuration $configuration) |
||
79 | |||
80 | /** |
||
81 | * Get cached URL file. |
||
82 | * |
||
83 | * @param string $url |
||
84 | * |
||
85 | * @return string |
||
86 | */ |
||
87 | protected function getCachedUrlFile(string $url): string |
||
97 | |||
98 | /** |
||
99 | * Return the cache folder and check if the folder exists. |
||
100 | * |
||
101 | * @return string |
||
102 | */ |
||
103 | protected function getCheckedCacheFolder(): string |
||
112 | } |
||
113 |