function DevelController::cacheClear

Same name in other branches
  1. 8.x-1.x src/Controller/DevelController.php \Drupal\devel\Controller\DevelController::cacheClear()
  2. 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 71

Class

DevelController
Returns responses for devel module routes.

Namespace

Drupal\devel\Controller

Code

public function cacheClear() {
    drupal_flush_all_caches();
    // @todo Use DI for messenger once https://www.drupal.org/project/drupal/issues/2940148 is resolved.
    $this->messenger()
        ->addMessage($this->t('Cache cleared.'));
    return $this->redirect('<front>');
}