You are here

function site_verify_install in Site verification 6

Same name and namespace in other branches
  1. 7.2 site_verify.install \site_verify_install()
  2. 7 site_verify.install \site_verify_install()

Implements hook_install().

File

./site_verify.install, line 58
Install, update and uninstall functions for the site_verify module.

Code

function site_verify_install() {

  // Add tables.
  drupal_install_schema('site_verify');

  // Import data from deprecated modules.
  $ret = array();
  site_verify_import_xmlsitemap($ret);
  site_verify_import_ghs($ret);
}