{% 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 "Terminate the command once the duration elapses?" %}{% endset %}
{% set helpText %}{% trans "Should the player forcefully terminate the command after the duration specified. Leave unchecked to let the command terminate naturally." %}{% endset %}
{{ forms.checkbox("terminateCommand", title, module.getOption("terminateCommand"), helpText, "duration-fields") }}
{% set title %}{% trans "Use taskkill to terminate commands?" %}{% endset %}
{% set helpText %}{% trans "On Windows, should the player use taskkill to terminate commands." %}{% endset %}
{{ forms.checkbox("useTaskkill", title, module.getOption("useTaskkill"), helpText, "duration-fields") }}
{% 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 "Stored Command" %}{% endset %}
{% set helpText %}{% trans "Pick a command" %}{% endset %}
{{ forms.dropdown("commandCode", "single", title, module.getOption("commandCode"), [{code:"", command: ""}]|merge(commands), "code", "command", helpText) }}
{% set title %}{% trans "Windows Command" %}{% endset %}
{% set helpText %}{% trans "Enter a Windows Command Line compatible command" %}{% endset %}
{{ forms.input("windowsCommand", title, module.getOption("windowsCommand")|url_decode, helpText, "non-command-fields") }}
{% set title %}{% trans "Launch the command via Windows Command Line" %}{% endset %}
{% set helpText %}{% trans "On Windows, should the player launch this command through the windows command line (cmd.exe)? This is useful for batch files. If you try to terminate this command only the command line will be terminated." %}{% endset %}
{{ forms.checkbox("launchThroughCmd", title, module.getOption("launchThroughCmd", 1), helpText, "non-command-fields") }}
{% set title %}{% trans "Android / Linux Command" %}{% endset %}
{% set helpText %}{% trans "Enter an Android / Linux Command Line compatible command" %}{% endset %}
{{ forms.input("linuxCommand", title, module.getOption("linuxCommand")|url_decode, helpText, "non-command-fields") }}
{% set title %}{% trans "webOS Command" %}{% endset %}
{% set helpText %}{% trans "Enter a webOS Command Line compatible command." %}{% endset %}
{{ forms.input("webosCommand", title, module.getOption('webosCommand'), helpText, "non-command-fields") }}
{% set title %}{% trans "Tizen Command" %}{% endset %}
{% set helpText %}{% trans "Enter a Tizen Command Line compatible command." %}{% endset %}
{{ forms.input("tizenCommand", title, module.getOption('tizenCommand'), helpText, "non-command-fields") }}