use of org.olat.course.highscore.ui.HighScoreEditController in project OpenOLAT by OpenOLAT.
the class IQEditController method init.
private void init(UserRequest ureq) {
configurationCtrl = new IQConfigurationController(ureq, getWindowControl(), stackPanel, course, courseNode, type);
listenTo(configurationCtrl);
layoutConfigurationCtrl = new IQLayoutConfigurationController(ureq, getWindowControl(), course, courseNode, type);
listenTo(layoutConfigurationCtrl);
if (AssessmentInstance.QMD_ENTRY_TYPE_ASSESS.equals(type)) {
highScoreNodeConfigController = new HighScoreEditController(ureq, getWindowControl(), moduleConfiguration);
listenTo(highScoreNodeConfigController);
}
Condition accessCondition = courseNode.getPreConditionAccess();
accessibilityCondContr = new ConditionEditController(ureq, getWindowControl(), euce, accessCondition, AssessmentHelper.getAssessableNodes(course.getEditorTreeModel(), courseNode));
listenTo(accessibilityCondContr);
}
use of org.olat.course.highscore.ui.HighScoreEditController in project openolat by klemens.
the class IQEditController method init.
private void init(UserRequest ureq) {
configurationCtrl = new IQConfigurationController(ureq, getWindowControl(), stackPanel, course, courseNode, type);
listenTo(configurationCtrl);
layoutConfigurationCtrl = new IQLayoutConfigurationController(ureq, getWindowControl(), course, courseNode, type);
listenTo(layoutConfigurationCtrl);
if (AssessmentInstance.QMD_ENTRY_TYPE_ASSESS.equals(type)) {
highScoreNodeConfigController = new HighScoreEditController(ureq, getWindowControl(), moduleConfiguration);
listenTo(highScoreNodeConfigController);
}
Condition accessCondition = courseNode.getPreConditionAccess();
accessibilityCondContr = new ConditionEditController(ureq, getWindowControl(), euce, accessCondition, AssessmentHelper.getAssessableNodes(course.getEditorTreeModel(), courseNode));
listenTo(accessibilityCondContr);
}
Aggregations