Skip to main content

Editables

The editables are placeholders in the templates, which are displayed as input widgets in the admin interface (so called editmode) and output the content in frontend mode. They are the essential part of managing content in documents.

Example Usage

The following code makes the <h1> headline editable in a document:

<h1>{{ opendxp_input("headline") }}</h1>

In some cases, especially with areablocks, editables could throw exceptions. Since OpenDXP internally uses the __toString method to render the editables, OpenDXP can't throw exceptions there. Therefore OpenDXP catches the exception, and puts it out as string if DEBUG Mode is enabled.

To prevent that and to have OpenDXP throw the Exception, you can call editables like:

<h1>{{ opendxp_input("headline").render()|raw }}</h1>

OpenDXP automatically displays an input widget in the edit mode and renders the content when accessing the document via the frontend.

List of Editables

NameDescription
AreablockAreablock is the content construction kit which allows you to insert predefined mini applications / content blocks called bricks into an areablock..
AreaArea allows you to use area bricks of a certain type (just like the Areablock).
BlockBlock is a loop component which can contain other editables.
CheckboxCheckbox / bool implementation for documents.
DateDatepicker, showing the date in a specified format.
RelationProvides possibility to create a reference to any other element in OpenDXP (document, asset, object).
Relations (Many-To-Many Relation)Provides possibility to edit multiple references to other elements in OpenDXP (documents, assets, objects).
ImageA place where you can assign an image (from the assets module).
InputA single-line text-input.
LinkAn editable link component.
MultiselectMultiselect implementation for documents.
NumericThe numeric editable is like the input editable but with special options for numbers (like minimum value, decimal precision...).
PDFThis editable allows you to embed asset documents (pdf, doc, xls, ...) into documents (like video, image, ...).
RenderletThe renderlet is a special container which is able to handle every object in OpenDXP (Documents, Assets, Objects).
SelectSelect box as an editable.
Snippet (embed)Use the snippet editable to embed a reusable document, for example to create teasers, boxes, etc.
TableThis editable allows you to add a fully editable table.
TextareaTextarea implementation for documents.
VideoUse the Video editable to insert asset movies in pages content.
WYSIWYGWYSIWYG editor.
Scheduled BlockScheduled Blocks allow to schedule content for certain timestamps