use of org.olat.modules.qpool.ui.events.QItemEdited in project OpenOLAT by OpenOLAT.
the class QTI21EditorController method updateQuestionItem.
private void updateQuestionItem(UserRequest ureq, AssessmentItem assessmentItem) {
if (questionItem instanceof QuestionItemImpl) {
String title = assessmentItem.getTitle();
QuestionItemImpl itemImpl = (QuestionItemImpl) questionItem;
itemImpl.setTitle(title);
qpoolService.updateItem(itemImpl);
fireEvent(ureq, new QItemEdited(questionItem));
}
}
use of org.olat.modules.qpool.ui.events.QItemEdited in project openolat by klemens.
the class QTI12EditorController method updateQuestionItem.
private void updateQuestionItem(UserRequest ureq, Item assessmentItem) {
if (qitem instanceof QuestionItemImpl && assessmentItem != null) {
String title = assessmentItem.getTitle();
QuestionItemImpl itemImpl = (QuestionItemImpl) qitem;
itemImpl.setTitle(title);
qpoolService.updateItem(itemImpl);
fireEvent(ureq, new QItemEdited(qitem));
}
}
use of org.olat.modules.qpool.ui.events.QItemEdited in project openolat by klemens.
the class QTI21EditorController method updateQuestionItem.
private void updateQuestionItem(UserRequest ureq, AssessmentItem assessmentItem) {
if (questionItem instanceof QuestionItemImpl) {
String title = assessmentItem.getTitle();
QuestionItemImpl itemImpl = (QuestionItemImpl) questionItem;
itemImpl.setTitle(title);
qpoolService.updateItem(itemImpl);
fireEvent(ureq, new QItemEdited(questionItem));
}
}
use of org.olat.modules.qpool.ui.events.QItemEdited in project openolat by klemens.
the class QuestionMetadataEditController method formOK.
@Override
protected void formOK(UserRequest ureq) {
if (item instanceof QuestionItemImpl) {
QuestionItemImpl itemImpl = (QuestionItemImpl) item;
QuestionItemAuditLogBuilder builder = qpoolService.createAuditLogBuilder(getIdentity(), Action.UPDATE_QUESTION_ITEM_METADATA);
builder.withBefore(itemImpl);
int day = learningTimeDayElement.getIntValue();
int hour = learningTimeHourElement.getIntValue();
int minute = learningTimeMinuteElement.getIntValue();
int seconds = learningTimeSecondElement.getIntValue();
String timeStr = MetadataConverterHelper.convertDuration(day, hour, minute, seconds);
itemImpl.setEducationalLearningTime(timeStr);
BigDecimal difficulty = toBigDecimal(difficultyEl.getValue());
itemImpl.setDifficulty(difficulty);
BigDecimal stdevDifficulty = toBigDecimal(stdevDifficultyEl.getValue());
itemImpl.setStdevDifficulty(stdevDifficulty);
BigDecimal differentiation = toBigDecimal(differentiationEl.getValue());
itemImpl.setDifferentiation(differentiation);
int numOfAnswerAlternatives = toInt(numAnswerAltEl.getValue());
itemImpl.setNumOfAnswerAlternatives(numOfAnswerAlternatives);
int numUsage = toInt(usageEl.getValue());
itemImpl.setUsage(numUsage);
item = qpoolService.updateItem(itemImpl);
builder.withAfter(item);
qpoolService.persist(builder.create());
fireEvent(ureq, new QItemEdited(item));
}
}
use of org.olat.modules.qpool.ui.events.QItemEdited in project openolat by klemens.
the class RightsMetadataEditController method formOK.
@Override
protected void formOK(UserRequest ureq) {
if (item instanceof QuestionItemImpl) {
QuestionItemImpl itemImpl = (QuestionItemImpl) item;
QuestionItemAuditLogBuilder builder = qpoolService.createAuditLogBuilder(getIdentity(), Action.UPDATE_QUESTION_ITEM_METADATA);
builder.withBefore(itemImpl);
if (licenseModule.isEnabled(licenseHandler)) {
if (licenseEl != null && licenseEl.isOneSelected()) {
String licenseTypeKey = licenseEl.getSelectedKey();
LicenseType licneseType = licenseService.loadLicenseTypeByKey(licenseTypeKey);
license.setLicenseType(licneseType);
}
String licensor = null;
String freetext = null;
if (licensorEl != null && licensorEl.isVisible()) {
licensor = StringHelper.containsNonWhitespace(licensorEl.getValue()) ? licensorEl.getValue() : null;
}
if (licenseFreetextEl != null && licenseFreetextEl.isVisible()) {
freetext = StringHelper.containsNonWhitespace(licenseFreetextEl.getValue()) ? licenseFreetextEl.getValue() : null;
}
license.setLicensor(licensor);
license.setFreetext(freetext);
license = licenseService.update(license);
licensorEl.setValue(license.getLicensor());
licenseFreetextEl.setValue(license.getFreetext());
}
item = qpoolService.updateItem(item);
builder.withAfter(itemImpl);
qpoolService.persist(builder.create());
fireEvent(ureq, new QItemEdited(item));
}
}
Aggregations