You are here

function bbb_uninstall in BigBlueButton 6

Same name and namespace in other branches
  1. 8 bbb.install \bbb_uninstall()
  2. 7 bbb.install \bbb_uninstall()

Implement hook_uninstall().

File

./bbb.install, line 97
Big Blue Button - Enables universities and colleges to deliver a high-quality learning experience.

Code

function bbb_uninstall() {

  // Remove variables
  db_query("DELETE FROM {variable} WHERE name LIKE 'bbb_%'");

  // Remove tables
  drupal_uninstall_schema('bbb');
}