TYPO3 CMS  TYPO3_6-2
ClearCache.php
Go to the documentation of this file.
1 <?php
3 
26 
32  protected function executeAction() {
34  $clearCacheService = $this->objectManager->get('TYPO3\\CMS\\Install\\Service\\ClearCacheService');
35  $clearCacheService->clearAll();
36  return 'OK';
37  }
38 }