-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c7ee4b
commit a7d8a84
Showing
3 changed files
with
73 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <https://www.gnu.org/licenses/>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<?php | ||
// This file is part of Moodle - https://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 <https://www.gnu.org/licenses/>. | ||
|
||
/** | ||
* 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; |