コード例 #1
0
ファイル: TokenCacheController.php プロジェクト: Wylbur/gj
 /**
  * Clear caches and redirect back to the frontpage.
  */
 public function flush()
 {
     token_clear_cache();
     drupal_set_message(t('Token registry caches cleared.'));
     return $this->redirect('<front>');
 }
コード例 #2
0
 /**
  * Clear only relevant caches for performance reasons.
  */
 protected function clearCache()
 {
     token_flush_caches();
     token_clear_cache();
 }