37 lines
1.3 KiB
HTML
37 lines
1.3 KiB
HTML
{{*
|
|
Récupérer soit la config enregistrée, soit la config par défaut
|
|
résultat : config.input_nature et config.output_nature
|
|
*}}
|
|
|
|
{{* config par défaut *}}
|
|
{{:read file="./defaut.json" assign="config_defaut"}}
|
|
{{:assign config_defaut=$config_defaut|json_decode}}
|
|
|
|
{{if $module.config.input_nature != null}}
|
|
{{:assign var=config.input_nature value=$module.config.input_nature}}
|
|
{{else}}
|
|
{{* pas de config enregistrée : utiliser la config par défaut *}}
|
|
{{#foreach from=$config_defaut.inputs item="elem"}}
|
|
{{#foreach from=$elem key=label item=value}}
|
|
{{:assign var="item.label" value=$label}}
|
|
{{:assign var="item.type" value=$value}}
|
|
{{:assign var="config.input_nature." value=$item}}
|
|
{{/foreach}}
|
|
{{/foreach}}
|
|
{{/if}}
|
|
|
|
{{if $module.config.output_nature != null}}
|
|
{{:assign var=config.output_nature value=$module.config.output_nature}}
|
|
{{else}}
|
|
{{* pas de config enregistrée : utiliser la config par défaut *}}
|
|
{{#foreach from=$config_defaut.outputs item="elem"}}
|
|
{{#foreach from=$elem key=label item=value}}
|
|
{{:assign var="item.label" value=$label}}
|
|
{{:assign var="item.type" value=$value}}
|
|
{{:assign var="config.output_nature." value=$item}}
|
|
{{/foreach}}
|
|
{{/foreach}}
|
|
{{/if}}
|
|
|
|
|