Skip to content

Commit

Permalink
add important files
Browse files Browse the repository at this point in the history
  • Loading branch information
TamaroWalter committed Apr 15, 2024
1 parent 3c7ee4b commit a7d8a84
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 0 deletions.
Empty file added .gitignore
Empty file.
43 changes: 43 additions & 0 deletions README.md
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/>.
30 changes: 30 additions & 0 deletions version.php
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;

0 comments on commit a7d8a84

Please sign in to comment.