function _globallink_update_7710_update_database in GlobalLink Connect for Drupal 7.7
Utility function for update 7710. Updates the new database tables.
1 call to _globallink_update_7710_update_database()
- globallink_update_7710 in ./
globallink.install - Upgrade from 7.x to 7.7
File
- ./
globallink.install, line 3632 - Installation file for GlobalLink module.
Code
function _globallink_update_7710_update_database() {
if (db_table_exists('globallink_core')) {
_globallink_update_7710_update_core();
}
if (db_table_exists('globallink_core_entity')) {
_globallink_update_7710_update_core_entity();
}
if (db_table_exists('globallink_core_beans')) {
_globallink_update_7710_update_core_common('beans', 'Bean');
}
if (db_table_exists('globallink_core_fieldable_panels')) {
_globallink_update_7710_update_core_fpp();
}
if (db_table_exists('globallink_core_interface')) {
_globallink_update_7710_update_core_common('interface', 'Interface');
}
if (db_table_exists('globallink_core_menu')) {
_globallink_update_7710_update_core_common('menu', 'Menu');
}
if (db_table_exists('globallink_core_webform')) {
_globallink_update_7710_update_core_webform();
}
if (db_table_exists('globallink_core_block')) {
_globallink_update_7710_update_core_common('block', 'Block');
}
if (db_table_exists('globallink_core_taxonomy')) {
_globallink_update_7710_update_core_common('taxonomy', 'Taxonomy');
}
return;
}