You are here

function domain_xmlsitemap_xmlsitemap_context_url_options in Domain XML sitemap 6

Same name and namespace in other branches
  1. 7 domain_xmlsitemap.xmlsitemap.inc \domain_xmlsitemap_xmlsitemap_context_url_options()

Implements hook_xmlsitemap_context_url_options().

File

./domain_xmlsitemap.module, line 26

Code

function domain_xmlsitemap_xmlsitemap_context_url_options(array $context) {
  $options = array();
  if (isset($context['domain']) && ($domain = domain_load($context['domain']))) {
    $options['base_url'] = rtrim($domain['path'], '/');
  }
  return $options;
}