Package com.claymus.site.module.theme.pages

Examples of com.claymus.site.module.theme.pages.ManageThemes


  public ContentType getPageContent(String[] tokens, User user) {
    int accessLevel = getAccessLevel(user.getRole());

    if(tokens.length == 1) {
      if(accessLevel >= ModuleHelper.VIEW_ONLY)
        return new ManageThemes(accessLevel);
      else
        return new Error401();

    } else {
      return null;
View Full Code Here

TOP

Related Classes of com.claymus.site.module.theme.pages.ManageThemes

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.