You are here

function notifications_anonymous_install in Notifications 6.4

Implementation of hook_install()

File

notifications_anonymous/notifications_anonymous.install, line 10
Notifications for anonymous users

Code

function notifications_anonymous_install() {

  // Set module weight to run after all notifications modules. Notifications content has a weight of 100
  db_query("UPDATE {system} SET weight = 200 WHERE name = 'notifications_anonymous' AND type = 'module'");
}