Skip to content

Commit e727ce5

Browse files
committedMay 8, 2024·
add dependency and little comment adaptations
1 parent ea8ec15 commit e727ce5

File tree

6 files changed

+12
-11
lines changed

6 files changed

+12
-11
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Townsquare Support #
22

33
A moodle local plugin that manages the subplugins for the moodle townsquare block.
4-
Documentation of the townsquare block: https://github.com/learnweb/moodle-block_townsquare
4+
Documentation of the townsquare block: https://github.com/learnweb/moodle-local_townsquare
55

66
## Installing via uploaded ZIP file ##
77

‎classes/plugininfo/townsquareexpansion.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
/**
1818
* TODO: Add description.
1919
*
20-
* @package block_townsquare
21-
* @copyright 2023 Tamaro Walter
20+
* @package local_townsquaresupport
21+
* @copyright 2024 Tamaro Walter
2222
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2323
*/
2424

‎db/access.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
// along with Moodle. If not, see <https://www.gnu.org/licenses/>.
1616

1717
/**
18-
* Plugin capabilities for the block_townsquare plugin.
18+
* Plugin capabilities for the local_townsquaresupport plugin.
1919
*
20-
* @package block_townsquare
21-
* @copyright 2023 Tamaro Walter
20+
* @package local_townsquaresupport
21+
* @copyright 2024 Tamaro Walter
2222
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2323
*/
2424

‎db/subplugins.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
/**
1818
* This file defines the sub-plugins for the townsquare block.
1919
*
20-
* @package blocks_townsquare
21-
* @copyright 2023 Tamaro Walter
20+
* @package local_townsquaresupport
21+
* @copyright 2024 Tamaro Walter
2222
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2323
*/
2424

‎db/upgrade.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525

2626
/**
27-
* Execute block_townsquare upgrade from the given old version.
27+
* Execute local_townsquare upgrade from the given old version.
2828
*
2929
* @param int $oldversion
3030
* @return bool

‎version.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@
1717
/**
1818
* Plugin version and other meta-data are defined here.
1919
*
20-
* @package block_townsquare
21-
* @copyright 2023 Tamaro Walter
20+
* @package local_townsquaresupport
21+
* @copyright 2024 Tamaro Walter
2222
* @license https://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
2323
*/
2424

2525
defined('MOODLE_INTERNAL') || die();
2626
$plugin->component = 'local_townsquaresupport';
27+
$plugin->dependencies = ['block_townsquare' => ANY_VERSION];
2728
$plugin->release = '0.1.0';
2829
$plugin->version = 2024041500;
2930
$plugin->requires = 2022041900;

0 commit comments

Comments
 (0)
Please sign in to comment.