Package com.jalios.jcms.policy
Interface WikiPolicyFilter
-
- All Superinterfaces:
java.lang.Comparable,PluginComponent,PolicyFilter
- All Known Implementing Classes:
BasicWikiPolicyFilter
public interface WikiPolicyFilter extends PolicyFilter
This class provides hooks for wiki rendering.- Since:
- jcms-5.7.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.StringafterRendering(java.lang.String text, java.util.Locale userLocale, WikiRenderingHints hints)This method is called after wiki renderingjava.lang.StringbeforeRendering(java.lang.String text, java.util.Locale userLocale, WikiRenderingHints hints)This method is called before wiki renderingvoidhandleWikiToolbar(WikiToolbar tb, java.lang.StringBuffer sb)Deprecated.wiki editor is no longer maintained, port your toolbar customization to Wysiwyg editor-
Methods inherited from interface com.jalios.jcms.plugin.PluginComponent
init
-
-
-
-
Method Detail
-
beforeRendering
java.lang.String beforeRendering(java.lang.String text, java.util.Locale userLocale, WikiRenderingHints hints)This method is called before wiki rendering- Parameters:
text- the text to be rendered.userLocale- an optionalLocaleof the user for which the text will be generatedhints- the rendering options to use.- Returns:
- the text.
- Since:
- jcms-5.7.0
-
afterRendering
java.lang.String afterRendering(java.lang.String text, java.util.Locale userLocale, WikiRenderingHints hints)This method is called after wiki rendering- Parameters:
text- the text after the rendering.userLocale- an optionalLocaleof the user for which the text will be generatedhints- the rendering options to use.- Returns:
- the text.
- Since:
- jcms-5.7.0
-
handleWikiToolbar
void handleWikiToolbar(WikiToolbar tb, java.lang.StringBuffer sb)
Deprecated.wiki editor is no longer maintained, port your toolbar customization to Wysiwyg editorThis method is called by WikiToolbar to add buttons / information at the end of wiki toolbar.- Parameters:
tb- the WikiToolbarsb- the StringBuffer before closing </div> toolbar
-
-