View source
<?php
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.'));
}
function og_notifications_schema() {
$schema = array();
$schema['og_notifications'] = array(
'description' => t('Stores autosubscription preferences for each user.'),
'fields' => array(
'uid' => array(
'description' => t("The user's {user}.uid."),
'type' => 'int',
'size' => 'normal',
'not null' => TRUE,
),
'autosubscribe' => array(
'description' => t(''),
'type' => 'int',
'size' => 'tiny',
'not null' => TRUE,
'default' => -1,
),
),
'primary key' => array(
'uid',
),
);
return $schema;
}
function og_notifications_enable() {
_og_notifications_populate();
}
function og_notifications_og_upgrade() {
$ret = array();
drupal_load('module', 'og_notifications');
drupal_load('module', 'notifications');
drupal_load('module', 'token');
drupal_load('module', 'messaging');
$result = db_query("SELECT nid, uid FROM {og_uid} WHERE mail_type = 1");
while ($subscription = db_fetch_object($result)) {
$account = (object) array(
'uid' => $subscription->uid,
);
og_notifications_user_subscribe($account, $subscription->nid);
}
db_query("ALTER TABLE {og} DROP notification");
db_query("ALTER TABLE {og_uid} DROP mail_type");
$autosubscribe = variable_get('og_notification', 1) == 1 ? 1 : 0;
variable_set('og_notifications_autosubscribe', $autosubscribe);
variable_del('og_notification');
db_query("INSERT INTO {og_notifications} (uid, autosubscribe) SELECT oug.uid, oug.og_email FROM {og_uid_global} oug");
db_query("UPDATE {og_notifications} SET autosubscribe = 0 WHERE autosubscribe = 2");
db_query('DROP TABLE {og_uid_global}');
variable_del('og_notifications_update_required');
return $ret;
}
function og_notifications_uninstall() {
drupal_uninstall_schema('og_notifications');
variable_del('og_notifications_autosubscribe');
variable_del('og_notifications_content_types');
drupal_set_message(t('Organic groups notifications module uninstallation script complete.'));
}
function _og_notifications_populate() {
$sql = 'SELECT u.uid FROM {users} u LEFT JOIN {og_notifications} ogn ON u.uid = ogn.uid WHERE u.uid > 0 AND ogn.uid IS NULL';
$result = db_query($sql);
while ($row = db_fetch_object($result)) {
db_query("INSERT INTO {og_notifications} (uid) VALUES (%d)", $row->uid);
}
}