You are here

function xmlsitemap_node_install in XML sitemap 6

Same name and namespace in other branches
  1. 5.2 xmlsitemap_node/xmlsitemap_node.install \xmlsitemap_node_install()
  2. 5 xmlsitemap_node/xmlsitemap_node.install \xmlsitemap_node_install()

Implementation of hook_install().

File

xmlsitemap_node/xmlsitemap_node.install, line 76
Installation file for XML sitemap node.

Code

function xmlsitemap_node_install() {
  drupal_install_schema('xmlsitemap_node');
  db_query("UPDATE {system} SET weight = 5 WHERE name = 'xmlsitemap_node'");
}