Multilingual Text String (Single Line)

Overview #

Provides a set of text boxes for data entry. One inputbox for each language.

Field Type Parameters: #

  1. Length (optional) – Number of characters. This limits the maximum number of characters that can be entered (not bytes).
    • Default: 255
    • Min: 1
    • Max: 1024

Value Processing Parameters: #

Basic usage:

{{ FieldName }}

Usage with parameters:

{{ FieldName(Limit Output, Length, Clean Braces, Clean Quotes, Language) }}
  1. Limit Output (optional) – Limits the output text: first number of characters, first number of words, or returns the link to the first image found in the text.
    • (Default. Returns text as it is)
    • chars – (Returns first number of characters from trimmed, sanitized text with HTML tags stripped.)
    • words – (Returns first number of words from trimmed, sanitized text with HTML tags stripped.)
    • firstimage – (Returns the link to the first image found in the text.)
  2. Length (optional) – Number of characters or words to limit the output.
    • Default:
    • Min: 1
    • Max: 1024
  3. Clean Braces (optional) – Removes all braces from the text to prevent interference from content plugins.
    • (No – default)
    • true: Yes
  4. Clean Quotes (optional) – Removes all quotes from the text.
    • (No – default)
    • true: Yes
  5. Language (optional) – Specify the language. If not specified, the default front-end language will be used.

Example:

{{ FieldName("chars",1,true,true) }}


Pure Value (Unprocessed): #

Example:

{{ FieldName.value }}


Edit Record Parameters: #

Basic usage:

{{ FieldName.edit }}

Usage with parameters:

{{ FieldName.edit(CSS Class, Attributes) }}
  1. CSS Class (optional) – Name or names of CSS class(s).
  2. Attributes (optional) – Optional attributes like: disabled, onclick, onchange etc.

What are your feelings

Leave a Reply

Updated on January 9, 2025