From a7d8a8405a12969850a1a3a98b4ad3f15324dbb2 Mon Sep 17 00:00:00 2001 From: TamaroWalter Date: Mon, 15 Apr 2024 18:05:19 +0200 Subject: [PATCH] add important files --- .gitignore | 0 README.md | 43 +++++++++++++++++++++++++++++++++++++++++++ version.php | 30 ++++++++++++++++++++++++++++++ 3 files changed, 73 insertions(+) create mode 100644 .gitignore create mode 100644 README.md create mode 100644 version.php diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/README.md b/README.md new file mode 100644 index 0000000..2b99ada --- /dev/null +++ b/README.md @@ -0,0 +1,43 @@ +# Townsquare Support # + +A moodle local plugin that manages the subplugins for the moodle townsquare block. +Documentation of the townsquare block: https://github.com/learnweb/moodle-block_townsquare + +## Installing via uploaded ZIP file ## + +1. Log in to your Moodle site as an admin and go to _Site administration > + Plugins > Install plugins_. +2. Upload the ZIP file with the plugin code. You should only be prompted to add + extra details if your plugin type is not automatically detected. +3. Check the plugin validation report and finish the installation. + +## Installing manually ## + +The plugin can be also installed by putting the contents of this directory to + + {your/moodle/dirroot}/local/townsquaresupport + +Afterwards, log in to your Moodle site as an admin and go to _Site administration > +Notifications_ to complete the installation. + +Alternatively, you can run + + $ php admin/cli/upgrade.php + +to complete the installation from the command line. + +## License ## + +2024 Tamaro Walter + +This program 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. + +This program 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 +this program. If not, see . diff --git a/version.php b/version.php new file mode 100644 index 0000000..1d613dd --- /dev/null +++ b/version.php @@ -0,0 +1,30 @@ +. + +/** + * Plugin version and other meta-data are defined here. + * + * @package block_townsquare + * @copyright 2023 Tamaro Walter + * @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later + */ + +defined('MOODLE_INTERNAL') || die(); +$plugin->component = 'local_townsquaresupport'; +$plugin->release = '0.1.0'; +$plugin->version = 2024041500; +$plugin->requires = 2022041900; +$plugin->maturity = MATURITY_ALPHA;