Package org.olat.course.statistic

Examples of org.olat.course.statistic.IStatisticManager


 
  @Override
  protected StatisticResult recalculateStatisticResult(UserRequest ureq) {
    // recalculate the statistic result based on the from and to dates.
    // do this by going via sql (see WeeklyStatisticManager)
    IStatisticManager weeklyStatisticManager = getStatisticManager();     
    StatisticResult statisticResult =
      weeklyStatisticManager.generateStatisticResult(ureq, getCourse(), getCourseRepositoryEntryKey(), form_.getFromDate(), form_.getToDate());
    return statisticResult;
  }
View Full Code Here

TOP

Related Classes of org.olat.course.statistic.IStatisticManager

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.