Package org.olat.user

Examples of org.olat.user.ChangePrefsController


    userProfileCtr = new ProfileAndHomePageEditController(ureq, getWindowControl(), identity, canEditAllFields.booleanValue());
    listenTo(userProfileCtr);
    userTabP.addTab(translate(NLS_EDIT_UPROFILE), userProfileCtr.getInitialComponent());
   
    prefsCtr = new ChangePrefsController(ureq, getWindowControl(), identity);
    userTabP.addTab(translate(NLS_EDIT_UPREFS), prefsCtr.getInitialComponent());

    Boolean canChangePwd = (Boolean) configuration.get(BaseSecurityModule.CONFIG_USERMANAGER_CAN_MODIFY_PWD);
    if (canChangePwd.booleanValue() || isOlatAdmin) {
      // show pwd form only if user has also right to create new passwords in case
View Full Code Here

TOP

Related Classes of org.olat.user.ChangePrefsController

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.