function user_relationship_implications_install in User Relationships 5
Same name and namespace in other branches
- 5.2 plugins/user_relationship_implications/user_relationship_implications.install \user_relationship_implications_install()
- 6 user_relationship_implications/user_relationship_implications.install \user_relationship_implications_install()
File
- plugins/
user_relationship_implications/ user_relationship_implications.install, line 3
Code
function user_relationship_implications_install() {
switch ($GLOBALS['db_type']) {
case 'mysql':
case 'mysqli':
db_query("\n CREATE TABLE {user_relationship_implications} (\n riid int unsigned NOT NULL default 0,\n rtid int unsigned NOT NULL default 0,\n implies_rtid int unsigned NOT NULL default 0,\n PRIMARY KEY (riid),\n KEY rtid (rtid),\n KEY implies_rtid (implies_rtid)\n ) /*!40100 DEFAULT CHARACTER SET utf8*/;\n ");
$success = TRUE;
break;
default:
drupal_set_message(t('Unsupported database.'));
}
if ($success) {
drupal_set_message(t('User Relationship Implications module installed successfully.'));
}
else {
drupal_set_message(t('The installation of the User Relationship Implications module as unsuccessful.'), 'error');
}
}