You are here

function friendlist_activity_install in Heartbeat 6.4

Same name and namespace in other branches
  1. 6.3 modules/friendlist_activity/friendlist_activity.install \friendlist_activity_install()

Implementation of hook_install().

File

modules/friendlist_activity/friendlist_activity.install, line 12
Install file for friendlist_activity

Code

function friendlist_activity_install() {
  variable_set('heartbeat_relations_api', 'none');

  // Module weights in core: put heartbeat after heartbeat in the chain.
  db_query("UPDATE {system} SET weight = 51 WHERE name = 'friendlist_activity'");
}