You are here

commons_notifications.install in Drupal Commons 6.2

File

modules/features/commons_notifications/commons_notifications.install
View source
<?php

/**
 * Enable og_notifications
 */
function commons_notifications_update_6000() {
  drupal_install_modules(array(
    'og_notifications',
  ));
  return array();
}
function commons_notifications_enable() {
  if (module_exists('commons_status_streams')) {
    commons_status_streams_disable_deprecated_notifications();
  }
}

Functions