{{ include('includes/content-headline.html.twig') }}
{{ pimcore_wysiwyg('lead') }}
{% if editmode %}

Checkbox

{{ pimcore_checkbox('myCheckbox') }}

Date

{{ pimcore_date('myDate') }}

Relation (Many-To-One)

{{ pimcore_relation("myRelation") }}

Relation (Many-To-Many)

{{ pimcore_relations("myRelations") }}

Image

{{ pimcore_image('myImage') }}

Input

{{ pimcore_input('myInput') }}

Link

{{ pimcore_link('myLink') }}

Multi-Select

{{ pimcore_multiselect('myMultiselect', { width: 200, height: 100, store: [ ["cars", "Cars"], ["motorcycles", "Motorcycles"], ["accessories", "Accessories"] ] }) }}

Numeric

{{ pimcore_numeric('myNumeric') }}

Embed

{{ pimcore_embed("myWidgets") }}

Renderlet (drop an asset folder)

{{ pimcore_renderlet('myRenderlet', { controller: 'App\\Controller\\DefaultController::galleryRenderletAction' }) }}

Select

{{ pimcore_select('mySelect', { store: [ ['one-month', 'One month'], ['three-months', 'Three months'], ['unlimited', 'Unlimited'] ] }) }}

Snippet

drop a document snippet here

{{ pimcore_snippet('mySnippet') }}

Table

of course you can create tables in the wysiwyg too

{{ pimcore_table('tableName', { width: 700, height: 400, defaults: { cols: 6, rows: 10, data: [ ["Value 1", "Value 2", "Value 3"], ["this", "is", "test"] ] } }) }}

Textarea

{{ pimcore_textarea('myTextarea') }}

Video

{{ pimcore_video('myVideo', { attributes: { class: 'video-js vjs-default-skin vjs-big-play-centered', 'data-setup': '{}' }, thumbnail: 'content', height: 380 }) }}

WYSIWYG

{{ pimcore_wysiwyg('myWysiwyg') }}

PDF

{{ pimcore_pdf("myPdf", {"width": 640, height: 100}) }}

EDITABLE DIALOG BOX

Configured on the Image w. metadata brick class "App\Document\Areabrick\ImageMetadata". Click on the edit button(pencil) for editable box:

{{ pimcore_area('content', { 'type' : 'image-metadata'}) }}
{% endif %}