diff --git a/src/main/java/de/bps/course/nodes/LLCourseNode.java b/src/main/java/de/bps/course/nodes/LLCourseNode.java index 01ba62be6c7bebe88dd12dbf9eadfa31b4e906d8..d68bd17076bc517dfe024158e492ec370aa15f1c 100644 --- a/src/main/java/de/bps/course/nodes/LLCourseNode.java +++ b/src/main/java/de/bps/course/nodes/LLCourseNode.java @@ -61,7 +61,7 @@ import de.bps.course.nodes.ll.LLRunController; */ public class LLCourseNode extends AbstractAccessableCourseNode { - private static final String TYPE = "ll"; + public static final String TYPE = "ll"; public static final String CONF_COURSE_ID = "ll_course_id"; public static final String CONF_COURSE_NODE_ID = "ll_course_node_id"; public static final String CONF_LINKLIST = "ll_link_list"; diff --git a/src/main/java/de/bps/course/nodes/ll/LLAssessmentHandler.java b/src/main/java/de/bps/course/nodes/ll/LLAssessmentHandler.java new file mode 100644 index 0000000000000000000000000000000000000000..08942fb9fd5feb9981991af8fe394ea5db924706 --- /dev/null +++ b/src/main/java/de/bps/course/nodes/ll/LLAssessmentHandler.java @@ -0,0 +1,41 @@ +/** + * <a href="http://www.openolat.org"> + * OpenOLAT - Online Learning and Training</a><br> + * <p> + * Licensed under the Apache License, Version 2.0 (the "License"); <br> + * you may not use this file except in compliance with the License.<br> + * You may obtain a copy of the License at the + * <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a> + * <p> + * Unless required by applicable law or agreed to in writing,<br> + * software distributed under the License is distributed on an "AS IS" BASIS, <br> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br> + * See the License for the specific language governing permissions and <br> + * limitations under the License. + * <p> + * Initial code contributed and copyrighted by<br> + * frentix GmbH, http://www.frentix.com + * <p> + */ +package de.bps.course.nodes.ll; + +import org.olat.course.learningpath.LearningPathOnlyAssessmentHandler; +import org.springframework.stereotype.Service; + +import de.bps.course.nodes.LLCourseNode; + +/** + * + * Initial date: 24.02.2020<br> + * @author uhensler, urs.hensler@frentix.com, http://www.frentix.com + * + */ +@Service +public class LLAssessmentHandler extends LearningPathOnlyAssessmentHandler { + + @Override + public String acceptCourseNodeType() { + return LLCourseNode.TYPE; + } + +} diff --git a/src/main/java/de/bps/course/nodes/ll/LLLearningPathNodeHandler.java b/src/main/java/de/bps/course/nodes/ll/LLLearningPathNodeHandler.java new file mode 100644 index 0000000000000000000000000000000000000000..7f816378e9cddbf0c89a7968cc5fcd229cbf853a --- /dev/null +++ b/src/main/java/de/bps/course/nodes/ll/LLLearningPathNodeHandler.java @@ -0,0 +1,81 @@ +/** + * <a href="http://www.openolat.org"> + * OpenOLAT - Online Learning and Training</a><br> + * <p> + * Licensed under the Apache License, Version 2.0 (the "License"); <br> + * you may not use this file except in compliance with the License.<br> + * You may obtain a copy of the License at the + * <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a> + * <p> + * Unless required by applicable law or agreed to in writing,<br> + * software distributed under the License is distributed on an "AS IS" BASIS, <br> + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br> + * See the License for the specific language governing permissions and <br> + * limitations under the License. + * <p> + * Initial code contributed and copyrighted by<br> + * frentix GmbH, http://www.frentix.com + * <p> + */ +package de.bps.course.nodes.ll; + +import org.olat.core.gui.UserRequest; +import org.olat.core.gui.control.Controller; +import org.olat.core.gui.control.WindowControl; +import org.olat.course.learningpath.LearningPathConfigs; +import org.olat.course.learningpath.LearningPathEditConfigs; +import org.olat.course.learningpath.LearningPathNodeHandler; +import org.olat.course.learningpath.model.ModuleLearningPathConfigs; +import org.olat.course.learningpath.ui.LearningPathNodeConfigController; +import org.olat.course.nodes.CourseNode; +import org.olat.repository.RepositoryEntry; +import org.springframework.stereotype.Service; + +import de.bps.course.nodes.LLCourseNode; + +/** + * + * Initial date: 21.02.2020<br> + * @author uhensler, urs.hensler@frentix.com, http://www.frentix.com + * + */ +@Service +public class LLLearningPathNodeHandler implements LearningPathNodeHandler { + + private static final LearningPathEditConfigs EDIT_CONFIGS = LearningPathEditConfigs.builder() + .enableNodeVisited() + .enableConfirmed() + .build(); + + @Override + public String acceptCourseNodeType() { + return LLCourseNode.TYPE; + } + + @Override + public boolean isSupported() { + return true; + } + + @Override + public LearningPathConfigs getConfigs(CourseNode courseNode) { + return new ModuleLearningPathConfigs(courseNode.getModuleConfiguration(), true); + } + + @Override + public Controller createConfigEditController(UserRequest ureq, WindowControl wControl, RepositoryEntry courseEntry, + CourseNode courseNode) { + return new LearningPathNodeConfigController(ureq, wControl, courseEntry, courseNode, EDIT_CONFIGS); + } + + @Override + public LearningPathEditConfigs getEditConfigs() { + return EDIT_CONFIGS; + } + + @Override + public void onMigrated(CourseNode courseNode) { + // + } + +}