/**
  * Render a message if no settings ar available
  * @return string   The rendered delete action
  * @rbacNeedsAccess
  * @rbacObject ResolutionFileCache
  * @rbacAction delete
  */
 public function clearResolutionFileCacheAction()
 {
     $this->resolutionFileCache->clear();
     $this->addFlashMessage(\TYPO3\CMS\Extbase\Utility\LocalizationUtility::translate('tx_yag_controller_resolutionFileCache.cacheSuccessfullyCleared', $this->extensionName));
     $this->forward('maintenanceOverview', 'Backend');
 }