Interface IPluginHtmlTemplateRenderCallbackOnAfterRenderParams
public interface IPluginHtmlTemplateRenderCallbackOnAfterRenderParams
Parameters for the HTML template callback plugin.
- Since:
- 8.3.7
-
Method Summary
Modifier and TypeMethodDescriptionbaseUrl()The base URL to the formcycle application.org.jsoup.nodes.Elementbody()The body element of the template.client()The client, if available.The form version, if available.com.hp.gagawa.java.elements.Headhead()The head of the template.locale()The locale being used for the template.project()The project, if available.
-
Method Details
-
baseUrl
-
body
org.jsoup.nodes.Element body()The body element of the template.- Returns:
- The body of the template.
-
client
Mandant client()The client, if available. Usually available when the template belongs to a specific client.- Returns:
- The client, or null if not available.
-
formVersion
FormVersion formVersion()The form version, if available. Usually available when the template gets rendered as a response to a form-related request, such as when submitting a form.- Returns:
- The form version, or null if not available.
-
head
com.hp.gagawa.java.elements.Head head()The head of the template.- Returns:
- The head of the template.
-
locale
-
project
Projekt project()The project, if available. Usually available when the template gets rendered as a response to a form-related request, such as when submitting a form.- Returns:
- The project, or null if not available.
-