Interface IPluginHtmlTemplateRenderCallbackOnAfterRenderParams
-
public interface IPluginHtmlTemplateRenderCallbackOnAfterRenderParamsParameters for the HTML template callback plugin.- Since:
- 8.3.7
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringbaseUrl()The base URL to the formcycle application.org.jsoup.nodes.Elementbody()The body element of the template.Mandantclient()The client, if available.FormVersionformVersion()The form version, if available.com.hp.gagawa.java.elements.Headhead()The head of the template.Localelocale()The locale being used for the template.Projektproject()The project, if available.
-
-
-
Method Detail
-
baseUrl
String baseUrl()
The base URL to the formcycle application.- Returns:
- The base URL.
-
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
Locale locale()
The locale being used for the template.- Returns:
- The 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.
-
-