Compare commits

..

13 commits

Author SHA1 Message Date
L_DA
d15a4535c5 parameter added 2020-12-04 18:23:32 +00:00
L_DA
e30061d84c Merge branch 'master' of gitlab.steinbeisschule-reutlingen.de:L_DA/block_timetable 2020-12-04 17:22:04 +00:00
L_DA
9d74ca5e46 file permissions 2020-12-04 17:19:10 +00:00
L_DA
e7fe35ef71 File moved 2020-11-22 15:29:27 +01:00
L_DA
e8f8d66748 Upload New File 2020-11-22 15:26:08 +01:00
L_DA
cff42dd81c Delete timetable1_small.png 2020-11-22 15:25:56 +01:00
L_DA
e975eb067f Replace timetable1_small.png 2020-11-22 15:25:27 +01:00
L_DA
5092883054 Upload New File 2020-11-22 15:24:22 +01:00
L_DA
ec407690eb Update README.md 2020-11-22 15:24:01 +01:00
L_DA
893ebe4a36 Merge branch 'master' of gitlab.steinbeisschule-reutlingen.de:L_DA/block_timetable 2020-11-22 09:51:56 +01:00
L_DA
ef859f6738 Update README.md 2020-11-21 22:05:33 +01:00
L_DA
ace614da22 upload timetable screenshot 2020-11-21 22:01:19 +01:00
L_DA
c55a809d97 Add new directory 2020-11-21 21:59:59 +01:00
7 changed files with 11 additions and 3 deletions

View file

@ -1,8 +1,10 @@
# block_timetable #
TODO Describe the plugin shortly here.
block_timetable is a moodle-block-plugin that provides timetables based on Untis export data.
TODO Provide more detailed description here.
![timetable text](doc/timetable1_small.png)
The plugin requires that the mod_timetable plugin is installed.
## License ##

0
doc/.gitkeep Normal file
View file

BIN
doc/timetable1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 39 KiB

BIN
doc/timetable1_small.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

View file

@ -40,6 +40,9 @@ class block_timetable_edit_form extends block_edit_form {
$mform->addElement('header', 'configheader', get_string('blocksettings', 'block'));
// Please keep in mind that all elements defined here must start with 'config_'.
$mform->addElement('text', 'config_class', get_string('class', 'block_timetable'));
$mform->setDefault('config_class', '');
$mform->setType('config_class', PARAM_RAW);
}
}

View file

@ -26,3 +26,6 @@
defined('MOODLE_INTERNAL') || die();
$string['pluginname'] = 'timetable';
$string['timetable:addinstance'] = 'add timetable';
$string['timetable:addmyinstance'] = 'add timetable';
$string['class'] = 'class';

View file

@ -26,7 +26,7 @@ defined('MOODLE_INTERNAL') || die();
$plugin->component = 'block_timetable';
$plugin->release = '0.1.0';
$plugin->version = 2020112101;
$plugin->version = 2020120402;
$plugin->requires = 2020061500;
$plugin->maturity = MATURITY_ALPHA;
$plugin->dependencies = [