October CMS Page variables types reference

Text

A text is a single line text field

{text name="text" label="Text" tab="Text"}{/text} 

Official website Enovision

Textarea

A textarea is a block of text in a multiline format

{textarea name="textarea" label="Textarea" tab="Text"}{/textarea}

Richeditor

A richeditor is like a textarea but then as an HTML featured editor

{richeditor name="richeditor" label="Richeditor" tab="Editors"}{/richeditor} 

Markdown

A markdown is like a textarea but then as an Markdown featured editor

{markdown name="markdown" label="Markdown" tab="Editors"}{/markdown} 

Mediafinder

Filetype image

{mediafinder name="mediafinder" mode="image" label="Mediafinder" tab="Uploads"}{/mediafinder} 

Dropdown

{dropdown name="dropdown" label="Dropdown" tab="Selection" options="blue:Blue | orange:Orange | red:Red" }{/dropdown} 

Radio

{radio name="radio" label="Radio" tab="Selection" options="y:Yes|n:No|m:Maybe"}{/radio}

Checkbox

{checkbox name="checkbox" label="Checkbox" tab="Selection" default="checked"}{/checkbox} 

Datepicker

Date and Time

{datepicker name="datepicker" label="Datepicker (Date & Time)" tab="Selection"}{/datepicker}

Date only

{datepicker name="datepicker_date" label="Datepicker (Date only)" mode="date" tab="Selection"}{/datepicker} 

Time only

{datepicker name="datepicker_time" label="Datepicker (Time only)" mode="time" tab="Selection"}{/datepicker} 

Repeater

{repeater name="repeater" prompt="Add another repeated field" tab="Repeater"}
    <h2>{text name="title" label="Title"}Title{/text}</h2>
    <p>{textarea name="content" label="Content"}Content{/textarea}</p>
{/repeater}

Variable

{variable type="text" name="text_as_variable" tab="Text" label="Text defined Variable"}{/variable}