function xmlsitemap_engines_update_5100 in XML sitemap 5
Update variables from Live Search to Bing.
File
- xmlsitemap_engines/
xmlsitemap_engines.install, line 65
Code
function xmlsitemap_engines_update_5100() {
$variables = array(
'submit' => FALSE,
'url' => 'http://www.bing.com/webmaster/ping.aspx?siteMap=' . url('sitemap.xml', NULL, NULL, TRUE),
'verify' => '',
'verify_string' => '',
);
foreach ($variables as $variable => $default) {
$value = variable_get('xmlsitemap_engines_live_' . $variable, $default);
if ($variable == 'url' && $value == $default) {
$value = 'http://www.bing.com/webmaster/ping.aspx?siteMap=' . url('sitemap.xml', NULL, NULL, TRUE);
}
variable_set('xmlsitemap_engines_bing_' . $variable, $value);
variable_del('xmlsitemap_engines_live_' . $variable);
}
return array();
}