function DevelController::cacheClear

Same name and namespace in other branches
  1. 8.x-1.x src/Controller/DevelController.php \Drupal\devel\Controller\DevelController::cacheClear()
  2. 5.x src/Controller/DevelController.php \Drupal\devel\Controller\DevelController::cacheClear()

Clears all caches, then redirects to the previous page.

1 string reference to 'DevelController::cacheClear'
devel.routing.yml in ./devel.routing.yml
devel.routing.yml

File

src/Controller/DevelController.php, line 94

Class

DevelController
Returns responses for devel module routes.

Namespace

Drupal\devel\Controller

Code

public function cacheClear() {
  drupal_flush_all_caches();
  $this->messenger()
    ->addMessage($this->t('Cache cleared.'));
  return $this->redirect('<front>');
}