You are here

function taxonomy_xml_flush_cache_file in Taxonomy import/export via XML 6.2

Same name and namespace in other branches
  1. 7 taxonomy_xml.module \taxonomy_xml_flush_cache_file()

Utility menu callback.

1 string reference to 'taxonomy_xml_flush_cache_file'
taxonomy_xml_menu in ./taxonomy_xml.module
Implementation of hook_menu: Define menu links.

File

./taxonomy_xml.module, line 1860
This module makes it possible to import and export taxonomies as XML documents.

Code

function taxonomy_xml_flush_cache_file($hash) {
  $cachedir = file_directory_path() . '/url_cache';
  unlink($cachedir . '/' . $hash);
  return "Deleted {$hash}";
}