deleteAll(); PhpStorageFactory::get('twig')->deleteAll(); // Disable the page cache. drupal_page_is_cacheable(FALSE); // Bootstrap up to where caches exist and clear them. drupal_bootstrap(DRUPAL_BOOTSTRAP_PAGE_CACHE); foreach (Cache::getBins() as $bin) { $bin->deleteAll(); } drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); drupal_flush_all_caches(); // Restore Drupal's error and exception handlers. // @see _drupal_bootstrap_configuration() set_error_handler('_drupal_error_handler'); set_exception_handler('_drupal_exception_handler'); }