From 74d876b585c4f1ba7ed182e4c67b0b66d693c92d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20Mazi=C3=A8re?= Date: Sun, 28 Aug 2016 11:03:30 +0200 Subject: [PATCH] [core] add explicit support for list default value MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit and implicit support for text and number parameters Signed-off-by: Pierre Mazière --- lib/Bridge.php | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/Bridge.php b/lib/Bridge.php index cab2701f..fc09b63e 100644 --- a/lib/Bridge.php +++ b/lib/Bridge.php @@ -317,6 +317,18 @@ abstract class BridgeAbstract implements BridgeInterface { $this->inputs[$context][$name]['value']=$properties['defaultValue']; } break; + case 'list': + if(!isset($properties['defaultValue'])){ + $this->inputs[$context][$name]['value']=reset($properties['values']); + }else{ + $this->inputs[$context][$name]['value']=$properties['defaultValue']; + } + break; + default: + if(isset($properties['defaultValue'])){ + $this->inputs[$context][$name]['value']=$properties['defaultValue']; + } + break; } } }