21 lines
421 B
PHP
21 lines
421 B
PHP
<?php
|
|
|
|
namespace Drupal\token\Controller;
|
|
|
|
use Drupal\Core\Controller\ControllerBase;
|
|
|
|
/**
|
|
* Clears cache for tokens.
|
|
*/
|
|
class TokenCacheController extends ControllerBase {
|
|
|
|
/**
|
|
* Clear caches and redirect back to the frontpage.
|
|
*/
|
|
public function flush() {
|
|
token_clear_cache();
|
|
$this->messenger()->addMessage($this->t('Token registry caches cleared.'));
|
|
return $this->redirect('<front>');
|
|
}
|
|
|
|
}
|