Examples of saveNews()


Examples of org.olat.collaboration.CollaborationTools.saveNews()

      for (int i = 0; i < CollaborationTools.TOOLS.length; i++) {
        String tool = CollaborationTools.TOOLS[i];
        newTools.setToolEnabled(tool, oldTools.isToolEnabled(tool));
      }     
      String oldNews = oldTools.lookupNews();
      newTools.saveNews(oldNews);
    }
    // 3. copy member visibility
    if (copyMemberVisibility) {
      BusinessGroupPropertyManager bgpm = new BusinessGroupPropertyManager(newGroup);
      bgpm.copyConfigurationFromGroup(sourceBusinessGroup);
View Full Code Here

Examples of org.olat.collaboration.CollaborationTools.saveNews()

          Long calendarAccess = Long.valueOf(group.getAttribute(EXPORT_KEY_CALENDAR_ACCESS));
          ct.saveCalendarAccess(calendarAccess);         
        }
        if(group.getAttribute(EXPORT_KEY_NEWS)!=null) {
          String info = group.getAttribute(EXPORT_KEY_NEWS);
          ct.saveNews(info);        
        }

        // get memberships
        List memberships = group.getChildren(EXPORT_KEY_AREA_RELATION);
        for (Iterator iterator = memberships.iterator(); iterator.hasNext();) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.