. /** * RSS client block installation. * * @package block_rss_client * @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_rss_client_install() { global $DB; // Disable rss_client on new installs by default. $DB->set_field('block', 'visible', 0, ['name' => 'rss_client']); }