You are here

function soundmanager2_enable in SoundManager2 6

Same name and namespace in other branches
  1. 6.2 soundmanager2.install \soundmanager2_enable()

Implementation of hook_enable().

Notify content module when this module is enabled.

File

./soundmanager2.install, line 30
Implementation of hook_install().

Code

function soundmanager2_enable() {
  drupal_load('module', 'content');
  content_notify('enable', 'soundmanager2');
}