You are here

function crm_core_activity_ui_install in CRM Core 7

Implements hook_install().

Set weight of the module to 20. It should be more than of views module for hook_menu_alter().

File

modules/crm_core_activity_ui/crm_core_activity_ui.install, line 14
Install, update and uninstall functions for Activity UI module.

Code

function crm_core_activity_ui_install() {
  db_query("UPDATE {system} SET weight = 20 WHERE name = 'crm_core_activity_ui'");
}