Compare commits
13 commits
221764b7b9
...
d15a4535c5
Author | SHA1 | Date | |
---|---|---|---|
![]() |
d15a4535c5 | ||
![]() |
e30061d84c | ||
![]() |
9d74ca5e46 | ||
![]() |
e7fe35ef71 | ||
![]() |
e8f8d66748 | ||
![]() |
cff42dd81c | ||
![]() |
e975eb067f | ||
![]() |
5092883054 | ||
![]() |
ec407690eb | ||
![]() |
893ebe4a36 | ||
![]() |
ef859f6738 | ||
![]() |
ace614da22 | ||
![]() |
c55a809d97 |
7 changed files with 11 additions and 3 deletions
|
@ -1,8 +1,10 @@
|
||||||
# block_timetable #
|
# 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.
|

|
||||||
|
|
||||||
|
The plugin requires that the mod_timetable plugin is installed.
|
||||||
|
|
||||||
## License ##
|
## License ##
|
||||||
|
|
||||||
|
|
0
doc/.gitkeep
Normal file
0
doc/.gitkeep
Normal file
BIN
doc/timetable1.png
Normal file
BIN
doc/timetable1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 39 KiB |
BIN
doc/timetable1_small.png
Normal file
BIN
doc/timetable1_small.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 50 KiB |
|
@ -40,6 +40,9 @@ class block_timetable_edit_form extends block_edit_form {
|
||||||
$mform->addElement('header', 'configheader', get_string('blocksettings', 'block'));
|
$mform->addElement('header', 'configheader', get_string('blocksettings', 'block'));
|
||||||
|
|
||||||
// Please keep in mind that all elements defined here must start with 'config_'.
|
// 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);
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,3 +26,6 @@
|
||||||
defined('MOODLE_INTERNAL') || die();
|
defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
$string['pluginname'] = 'timetable';
|
$string['pluginname'] = 'timetable';
|
||||||
|
$string['timetable:addinstance'] = 'add timetable';
|
||||||
|
$string['timetable:addmyinstance'] = 'add timetable';
|
||||||
|
$string['class'] = 'class';
|
||||||
|
|
|
@ -26,7 +26,7 @@ defined('MOODLE_INTERNAL') || die();
|
||||||
|
|
||||||
$plugin->component = 'block_timetable';
|
$plugin->component = 'block_timetable';
|
||||||
$plugin->release = '0.1.0';
|
$plugin->release = '0.1.0';
|
||||||
$plugin->version = 2020112101;
|
$plugin->version = 2020120402;
|
||||||
$plugin->requires = 2020061500;
|
$plugin->requires = 2020061500;
|
||||||
$plugin->maturity = MATURITY_ALPHA;
|
$plugin->maturity = MATURITY_ALPHA;
|
||||||
$plugin->dependencies = [
|
$plugin->dependencies = [
|
||||||
|
|
Loading…
Add table
Reference in a new issue