Interface IPluginHtmlTemplateRenderCallbackOnAfterRenderParams


public interface IPluginHtmlTemplateRenderCallbackOnAfterRenderParams
Parameters for the HTML template callback plugin.
Since:
8.3.7
  • Method Summary

    Modifier and Type
    Method
    Description
    The base URL to the formcycle application.
    org.jsoup.nodes.Element
    The body element of the template.
    The client, if available.
    The form version, if available.
    com.hp.gagawa.java.elements.Head
    The head of the template.
    The locale being used for the template.
    The project, if available.
  • Method Details

    • 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.