You are here

function brazilianids_enable in Brazilian IDs 6

Implementation of hook_enable().

Notify content module when this module is enabled.

File

./brazilianids.install, line 50
brazilianids.install Install, uninstall, enable and disable the module

Code

function brazilianids_enable() {
  if (module_exists('content')) {
    drupal_load('module', 'content');
    content_notify('enable', 'brazilianids');
  }
}