{% set title %}{% trans "Name" %}{% endset %}
{% set helpText %}{% trans "An optional name for this widget" %}{% endset %}
{{ forms.input("name", title, module.getOption("name"), helpText) }}
{% set title %}{% trans "Set a duration?" %}{% endset %}
{% set helpText %}{% trans "Select to provide a specific duration for this Widget" %}{% endset %}
{{ forms.checkbox("useDuration", title, module.getUseDuration(), helpText) }}
{% set title %}{% trans "Duration" %}{% endset %}
{% set helpText %}{% trans "The duration in seconds this should be displayed" %}{% endset %}
{{ forms.number("duration", title, module.getDuration(), helpText, "duration-fields", "required") }}
{% set title %}{% trans "Enable Stats Collection?" %}{% endset %}
{% set helpText %}{% trans "Enable the collection of Proof of Play statistics for this Widget. Ensure that ‘Enable Stats Collection’ is set to ‘On’ in the Display Settings." %}{% endset %}
{% set offOption %}{% trans "Off" %}{% endset %}
{% set onOption %}{% trans "On" %}{% endset %}
{% set inheritOption %}{% trans "Inherit" %}{% endset %}
{% set options = [
{ id: "Off", value: offOption },
{ id: "On", value: onOption },
{ id: "Inherit", value: inheritOption }
] %}
{{ forms.dropdown("enableStat", "single", title, module.getOption("enableStat", theme.getSetting("WIDGET_STATS_ENABLED_DEFAULT")), options, "id", "value", helpText) }}
{% set title %}{% trans "Clock Type" %}{% endset %}
{% set helpText %}{% trans "Please select the type of clock to display." %}{% endset %}
{% set analog %}{% trans "Analog" %}{% endset %}
{% set digital %}{% trans "Digital" %}{% endset %}
{% set flip %}{% trans "Flip Clock" %}{% endset %}
{% set options = [
{ id: 1, value: analog },
{ id: 2, value: digital },
{ id: 3, value: flip },
] %}
{{ forms.dropdown("clockTypeId", "single", title, module.getOption("clockTypeId"), options, "id", "value", helpText) }}
{% set title %}{% trans "Clock Face" %}{% endset %}
{% set helpText %}{% trans "Please select a clock face." %}{% endset %}
{{ forms.dropdown("clockFace", "single", title, module.getOption("clockFace", "TwentyFourHourClock"), module.clockFaces(), "id", "value", helpText, "flip-control-group") }}
{% set title %}{% trans "Offset" %}{% endset %}
{% set helpText %}{% trans "The offset in minutes that should be applied to the current time, or if a counter then date/time to run from in the format Y-m-d H:i:s." %}{% endset %}
{{ forms.input("offset", title, module.getOption("offset"), helpText) }}
{% set title %}{% trans "Show Seconds?" %}{% endset %}
{% set helpText %}{% trans "Should the clock show seconds or not?" %}{% endset %}
{{ forms.checkbox("showSeconds", title, module.getOption("showSeconds", 1), helpText, "flip-control-group") }}
{% set title %}{% trans "Theme" %}{% endset %}
{% set helpText %}{% trans "Please select a theme for the clock." %}{% endset %}
{% set light %}{% trans "Light" %}{% endset %}
{% set dark %}{% trans "Dark" %}{% endset %}
{% set options = [
{ id: 1, value: light },
{ id: 2, value: dark }
] %}
{{ forms.dropdown("themeId", "single", title, module.getOption("theme"), options, "id", "value", helpText, "analogue-control-group") }}
{% set message %}{% trans "Enter a format for the Digital Clock e.g. [HH:mm] or [DD/MM/YYYY]. See the manual for more information." %}{% endset %}
{{ forms.message(message, "") }}
{% set simpleTextEditorMessage %}
{% trans "Enter text or HTML in the box below." %}
{% endset %}
{{ forms.message(simpleTextEditorMessage, 'ta_text-advanced-editor-hide inline-editor-hide') }}
{# Layout Designer messages #}
{% set layoutDesignerMessage %}
{% trans "Enter text to display using the inline editor which can be opened by clicking in the preview on the left." %}
{% trans "When using the inline editor Shift+Enter will drop a single line. Enter alone starts a new paragraph." %}
{% endset %}
{{ forms.message(layoutDesignerMessage, 'layout-designer-message inline-editor-show') }}
{# Playlist Editor messages #}
{% set playlistEditorMessage %}
{% trans "Enter the text to display. The red rectangle reflects the size of the region you are editing." %}
{% trans "Shift+Enter will drop a single line. Enter alone starts a new paragraph." %}
{% endset %}
{{ forms.message(playlistEditorMessage, 'playlist-editor-message ta_text-advanced-editor-show') }}
{{ forms.textarea("ta_text", "", module.getRawNode("format"), "", "inline-editor-hide", "", 10) }}