. /** * Install script for mod_bigbluebuttonbn. * * @package mod_bigbluebuttonbn * @copyright 2022 Mihail Geshoski * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** * Perform the post-install procedures. */ function xmldb_bigbluebuttonbn_install() { global $DB; // Disable the BigBlueButton activity module on new installs by default. $DB->set_field('modules', 'visible', 0, ['name' => 'bigbluebuttonbn']); }