mirror of
https://github.com/moodle/moodle.git
synced 2025-01-29 11:46:19 +01:00
MDL-73342 rss_client: Disable the block by default
Co-authored by: Amaia Anabitarte <amaia@moodle.com>
This commit is contained in:
parent
219d8ec4a4
commit
fcfa24f341
33
blocks/rss_client/db/install.php
Normal file
33
blocks/rss_client/db/install.php
Normal file
@ -0,0 +1,33 @@
|
||||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* RSS client block installation.
|
||||
*
|
||||
* @package block_rss_client
|
||||
* @copyright 2021 Amaia Anabitarte <amaia@moodle.com>
|
||||
* @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']);
|
||||
}
|
@ -31,7 +31,7 @@ defined('MOODLE_INTERNAL') || die();
|
||||
* @return boolean
|
||||
*/
|
||||
function xmldb_block_rss_client_upgrade($oldversion) {
|
||||
global $CFG;
|
||||
global $CFG, $DB;
|
||||
|
||||
// Automatically generated Moodle v3.6.0 release upgrade line.
|
||||
// Put any upgrade step following this.
|
||||
@ -45,5 +45,16 @@ function xmldb_block_rss_client_upgrade($oldversion) {
|
||||
// Automatically generated Moodle v3.9.0 release upgrade line.
|
||||
// Put any upgrade step following this.
|
||||
|
||||
if ($oldversion < 2021121600) {
|
||||
// From Moodle 4.0, this block has been disabled by default in new installations.
|
||||
// If the site has no instances of this block, it will disabled during the upgrading process too.
|
||||
$totalcount = $DB->count_records('block_instances', ['blockname' => 'rss_client']);
|
||||
if ($totalcount == 0) {
|
||||
$DB->set_field('block', 'visible', 0, ['name' => 'rss_client']);
|
||||
}
|
||||
|
||||
upgrade_block_savepoint(true, 2021121600, 'rss_client', false);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -24,6 +24,6 @@
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
$plugin->version = 2021052500; // The current plugin version (Date: YYYYMMDDXX).
|
||||
$plugin->version = 2021121600; // The current plugin version (Date: YYYYMMDDXX).
|
||||
$plugin->requires = 2021052500; // Requires this Moodle version.
|
||||
$plugin->component = 'block_rss_client'; // Full name of the plugin (used for diagnostics)
|
||||
|
Loading…
x
Reference in New Issue
Block a user