You are here

function og_notifications_install in Organic groups 6.2

Same name and namespace in other branches
  1. 5.8 og_notifications/og_notifications.install \og_notifications_install()
  2. 5.3 og_notifications/og_notifications.install \og_notifications_install()
  3. 6 modules/og_notifications/og_notifications.install \og_notifications_install()

Implementation of hook_install().

File

modules/og_notifications/og_notifications.install, line 6

Code

function og_notifications_install() {
  drupal_install_schema('og_notifications');
  if (variable_get('og_notifications_update_required', FALSE)) {
    og_notifications_og_upgrade();
  }
  drupal_set_message(t('Organic groups notifications module installation script complete.'));
}