1 31 32 package org.opencms.workplace.tools; 33 34 import org.opencms.file.CmsObject; 35 import org.opencms.security.CmsRole; 36 37 46 public class CmsOnlyAdminToolHandler extends A_CmsToolHandler { 47 48 51 public boolean isEnabled(CmsObject cms) { 52 53 return true; 54 } 55 56 59 public boolean isVisible(CmsObject cms) { 60 61 return cms.hasRole(CmsRole.ADMINISTRATOR); 62 } 63 } 64 | Popular Tags |