From 4ae8539f9c67833901849074f11c96d8101e40c2 Mon Sep 17 00:00:00 2001 From: Stefan-Alexander Scholz Date: Mon, 18 Apr 2022 21:11:16 +0200 Subject: [PATCH 1/2] Update freetemplates.php no built in templates until next version --- freetemplates.php | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/freetemplates.php b/freetemplates.php index 10e64c5..21d114b 100644 --- a/freetemplates.php +++ b/freetemplates.php @@ -25,23 +25,5 @@ defined('MOODLE_INTERNAL') || die(); global $freetemplates; -$freetemplates = [ - - '0' => array( - 'id' => 0, - 'title' => 'demo test 1', - 'description' => '

test content of the block content

', - 'tags' => [], - 'backupfile' => 'course-10-online.mbz', - 'preview_url' => '', - 'restrictcohort' => 0, - 'cohortids' => [], - 'restrictcategory' => 0, - 'categoryids' => [], - 'includesubcategories' => 0, - 'restrictrole' => 0, - 'roleids' => [], - 'description_format' => 1, - ), -]; +$freetemplates = []; From 7f6b3d0d6650384e03fbde423b89a0476e283684 Mon Sep 17 00:00:00 2001 From: Stefan-Alexander Scholz Date: Mon, 18 Apr 2022 21:16:20 +0200 Subject: [PATCH 2/2] Update version.php 4.0 added to supported list --- version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.php b/version.php index 2648c68..b0863ad 100644 --- a/version.php +++ b/version.php @@ -28,5 +28,5 @@ $plugin->requires = 2020061500; // Requires this Moodle version. $plugin->release = 'Version 1.2'; $plugin->component = 'format_kickstart'; // Full name of the plugin (used for diagnostics). -$plugin->supported = [39, 311]; +$plugin->supported = [39, 400]; $plugin->maturity = MATURITY_STABLE;