2023-11-30 18:14:46 +01:00
|
|
|
{{*
|
2023-12-06 09:59:11 +01:00
|
|
|
Récupérer soit la config enregistrée, soit la config par défaut
|
|
|
|
résultat : config.input_nature et config.output_nature
|
2023-11-30 18:14:46 +01:00
|
|
|
*}}
|
|
|
|
|
|
|
|
{{* config par défaut *}}
|
2023-12-05 10:07:01 +01:00
|
|
|
{{:read file="./defaut.json" assign="config_defaut"}}
|
2023-11-30 18:14:46 +01:00
|
|
|
{{:assign config_defaut=$config_defaut|json_decode}}
|
|
|
|
|
2023-12-05 19:17:08 +01:00
|
|
|
{{if $module.config.input_nature != null}}
|
2023-12-06 09:59:11 +01:00
|
|
|
{{:assign var=config.input_nature value=$module.config.input_nature}}
|
2023-11-30 18:14:46 +01:00
|
|
|
{{else}}
|
2023-12-06 09:59:11 +01:00
|
|
|
{{* 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}}
|
2023-12-07 17:33:49 +01:00
|
|
|
{{:assign var="config.input_nature.%s"|args:$label value=$value}}
|
2023-12-06 09:59:11 +01:00
|
|
|
{{/foreach}}
|
|
|
|
{{/foreach}}
|
2023-11-30 18:14:46 +01:00
|
|
|
{{/if}}
|
|
|
|
|
2023-12-05 19:17:08 +01:00
|
|
|
{{if $module.config.output_nature != null}}
|
2023-12-06 09:59:11 +01:00
|
|
|
{{:assign var=config.output_nature value=$module.config.output_nature}}
|
2023-11-30 18:14:46 +01:00
|
|
|
{{else}}
|
2023-12-06 09:59:11 +01:00
|
|
|
{{* 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}}
|
2023-12-07 17:33:49 +01:00
|
|
|
{{:assign var="config.output_nature.%s"|args:$label value=$value}}
|
2023-12-06 09:59:11 +01:00
|
|
|
{{/foreach}}
|
|
|
|
{{/foreach}}
|
2023-11-30 18:14:46 +01:00
|
|
|
{{/if}}
|