. /** * Selfcompletion block installation. * * @package block_selfcompletion * @copyright 2021 Amaia Anabitarte * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ /** * Perform the post-install procedures. */ function xmldb_block_selfcompletion_install() { global $DB; // Disable selfcompletion on new installs by default. $DB->set_field('block', 'visible', 0, ['name' => 'selfcompletion']); }