You are here

function seo_checklist_install in SEO Checklist 7.4

Implements hook_install().

File

./seo_checklist.install, line 11
Install, update and uninstall functions for the seo_checklist module.

Code

function seo_checklist_install() {

  // Detect and update a pre- name change installation.
  $result = db_query("SELECT * FROM {system} WHERE name = 'seochecklist'");
  if ($result
    ->rowCount()) {
    seo_checklist_update_7400();
  }
}