You are here

function xmlsitemap_file_download in XML sitemap 5

Implementation of hook_file_download().

Related topics

File

./xmlsitemap.module, line 522
Creates a site map compatible with the sitemaps.org schema.

Code

function xmlsitemap_file_download($file) {
  if ($file == 'xmlsitemap/gss.xsl') {
    return array(
      'Content-Type:',
    );
  }
}