Skip to content

Commit e892822

Browse files
(Re)enable the autosave functionality in ILIAS 9 (#4)
* Updated the contact details named in several classes * Added the ilAssQuestionAutosaveable interface to (re)enable the autosave feature
1 parent 0c72764 commit e892822

File tree

58 files changed

+65
-62
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+65
-62
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
vendor/
2+
.DS_Store

README.md

Lines changed: 0 additions & 4 deletions

classes/class.assSQLQuestion.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
<?php
22

33
declare(strict_types=1);
4+
5+
require_once './Modules/TestQuestionPool/interfaces/interface.ilAssQuestionAutosaveable.php';
46

57
/**
6-
* Main defintion of the SQLQuestion plugin
8+
* Main definition of the SQLQuestion plugin
79
*
8-
* @author Dominik Probst <dominik.probst@studium.fau.de>
10+
* @author Dominik Probst <dominik.probst@fau.de>
911
* @ingroup ModulesTestQuestionPool
1012
*/
11-
class assSQLQuestion extends assQuestion
13+
class assSQLQuestion extends assQuestion implements ilAssQuestionAutosaveable
1214
{
1315
/**
1416
* Member variables that have to be part of every assQuestion

classes/class.assSQLQuestionGUI.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* GUI class of the SQLQuestion plugin
77
*
8-
* @author Dominik Probst <dominik.probst@studium.fau.de>
8+
* @author Dominik Probst <dominik.probst@fau.de>
99
* @version $Id: $
1010
* @ingroup ModulesTestQuestionPool
1111
*

classes/class.ilAssSQLQuestionFeedback.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Feedback class of the SQLQuestion plugin
77
* At the current state of the plugin this simply uses ilAssSingleOptionQuestionFeedback
88
*
9-
* @author Dominik Probst <dominik.probst@studium.fau.de>
9+
* @author Dominik Probst <dominik.probst@fau.de>
1010
* @version $Id$
1111
*
1212
*/

classes/class.ilassSQLQuestionPlugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Main plugin file of the SQLQuestion plugin
77
*
8-
* @author Dominik Probst <dominik.probst@studium.fau.de>
8+
* @author Dominik Probst <dominik.probst@fau.de>
99
* @version $Id$
1010
* @ingroup ModulesTestQuestionPool
1111
*/

classes/internal/DataStructures/class.ParticipantInput.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* An internal helper class to define a solid structure for the participants input
77
*
8-
* @author Dominik Probst <dominik.probst@studium.fau.de>
8+
* @author Dominik Probst <dominik.probst@fau.de>
99
*/
1010
class ParticipantInput
1111
{

classes/internal/GUI/GUIAreas/class.OutputArea.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Represents the output area used in assSQLQuestionGUI
77
*
8-
* @author Dominik Probst <dominik.probst@studium.fau.de>
8+
* @author Dominik Probst <dominik.probst@fau.de>
99
*
1010
* @ilctrl_iscalledby OutputArea: ilObjQuestionPoolGUI, ilObjTestGUI, ilQuestionEditGUI, ilTestExpressPageObjectGUI
1111
* @ilCtrl_Calls OutputArea: ilFormPropertyDispatchGUI

classes/internal/GUI/GUIAreas/class.QuestionArea.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Represents the area used in assSQLQuestionGUI to display the question
77
*
8-
* @author Dominik Probst <dominik.probst@studium.fau.de>
8+
* @author Dominik Probst <dominik.probst@fau.de>
99
*
1010
* @ilctrl_iscalledby QuestionArea: ilObjQuestionPoolGUI, ilObjTestGUI, ilQuestionEditGUI, ilTestExpressPageObjectGUI
1111
* @ilCtrl_Calls QuestionArea: ilFormPropertyDispatchGUI

classes/internal/GUI/GUIAreas/class.ScoringArea.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
/**
66
* Represents the scoring area used in assSQLQuestionGUI
77
*
8-
* @author Dominik Probst <dominik.probst@studium.fau.de>
8+
* @author Dominik Probst <dominik.probst@fau.de>
99
*
1010
* @ilctrl_iscalledby ScoringArea: ilObjQuestionPoolGUI, ilObjTestGUI, ilQuestionEditGUI, ilTestExpressPageObjectGUI
1111
* @ilCtrl_Calls ScoringArea: ilFormPropertyDispatchGUI

0 commit comments

Comments
 (0)