Package org.olat.course.run.navigation

Examples of org.olat.course.run.navigation.NavigationHandler


    // set up the components
    luTree = new MenuTree("luTreeRun", this);

    // build up the running structure for this user;
    uce = new UserCourseEnvironmentImpl(identEnv, cenv);
    navHandler = new NavigationHandler(uce, true);
   
    // evaluate scoring
    uce.getScoreAccounting().evaluateAll();
   
    // build menu (treemodel)
View Full Code Here


    // build up the running structure for this user;
    uce = new UserCourseEnvironmentImpl(ureq.getUserSession().getIdentityEnvironment(), course.getCourseEnvironment());
    // build score now
    uce.getScoreAccounting().evaluateAll();
    navHandler = new NavigationHandler(uce, false);

    // jump to either the forum or the folder if the business-launch-path says
    // so.
    boolean showAssessmentTool = false;
   
View Full Code Here

           
            // rebuild up the running structure for this user, after publish;
            uce = new UserCourseEnvironmentImpl(ureq.getUserSession().getIdentityEnvironment(), CourseFactory.loadCourse(course.getResourceableId()).getCourseEnvironment());
            // build score now
            uce.getScoreAccounting().evaluateAll();
            navHandler = new NavigationHandler(uce, false);
           
            // rebuild and jump to root node
            updateTreeAndContent(ureq, null, null);
            // and also tools (maybe new assessable nodes -> show efficiency
            // statment)
View Full Code Here

TOP

Related Classes of org.olat.course.run.navigation.NavigationHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.