1 31 32 package org.opencms.workplace.tools; 33 34 import org.opencms.file.CmsObject; 35 import org.opencms.workplace.CmsWorkplace; 36 37 import java.util.Map ; 38 39 51 public interface I_CmsToolHandler { 52 53 58 String getDisabledHelpText(); 59 60 65 String getGroup(); 66 67 72 String getHelpText(); 73 74 79 String getIconPath(); 80 81 86 String getLink(); 87 88 93 String getName(); 94 95 102 Map getParameters(CmsWorkplace wp); 103 104 109 String getPath(); 110 111 116 float getPosition(); 117 118 123 String getShortName(); 124 125 130 String getConfirmationMessage(); 131 132 137 String getSmallIconPath(); 138 139 146 boolean isEnabled(CmsObject cms); 147 148 155 boolean isVisible(CmsObject cms); 156 157 166 boolean setup(CmsObject cms, CmsToolRootHandler root, String resourcePath); 167 } | Popular Tags |