You are here

public function DevelController::cacheClear in Devel 8.3

Same name and namespace in other branches
  1. 8 src/Controller/DevelController.php \Drupal\devel\Controller\DevelController::cacheClear()
  2. 8.2 src/Controller/DevelController.php \Drupal\devel\Controller\DevelController::cacheClear()
  3. 4.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>');
}