Skip to main content
Version: 2023.3

Input Editable

General

The input editable is a single line unformatted text placeholder (just as HTMLs <input> is), which is useful for text headlines, paragraphs and other values. For a multi-line alternative have a look at the textarea editable.

Configuration

NameTypeConfiguration
widthintegerWidth of the input in editmode (in pixels)
htmlspecialcharsbooleanSet to false to get the raw value without HTML special chars like & (default to true)
nowrapbooleanset to false to disable the automatic line break
classstringA CSS class that is added to the surrounding container of this element in editmode
placeholderstringA placeholder that is displayed when the field is empty
requiredbooleanset to true to make field value required for publish

Methods

NameReturnDescription
getData()stringValue of the input, this is useful to get the value even in editmode.
isEmpty()booleanWhether the editable is empty or not

Example

Basic usage

<h2>
{{ pimcore_input("myHeadline") }}
</h2>

The above code generates an editable area which you can fill with the text, see: Inpute preview in the backendInpute preview in the backendInpute preview in the backend

Advanced usage

You could also specify other parameters, like the size:

<h2>
{{ pimcore_input("headerLine", {'width': 540}) }}
</h2>