- UiInput and UiSelect now allows NULL values to be passed

This commit is contained in:
Dave Mc Nicoll 2020-01-29 16:14:23 -05:00
parent 94e42747a4
commit 2014f7fdeb
2 changed files with 4 additions and 2 deletions

View File

@ -22,10 +22,11 @@ class UiInput extends UiElement implements Extension {
return "<?php echo ( new \\" . static::class . "() )->buildHtml($arguments) ?>";
}
public function buildHtml(string $name, string $value, array $attributes = []) : string
public function buildHtml(string $name, ? string $value = null, array $attributes = []) : string
{
$this->setValue($value);
$this->attributes([ 'name' => $name ] + $attributes + $this->attributes);
return $this->render();
}

View File

@ -22,7 +22,7 @@ class UiSelect extends UiElement implements Extension {
return "<?php echo ( new \\" . static::class . "() )->buildHtml($arguments) ?>";
}
public function buildHtml(string $name, array $list, $value, array $attributes = [], bool $strictComparison = true) : string
public function buildHtml(string $name, array $list, $value = null, array $attributes = [], bool $strictComparison = true) : string
{
$this->attributes([ 'name' => $name ] + $attributes + $this->attributes);
$this->setList($list, $value, $strictComparison);
@ -40,6 +40,7 @@ class UiSelect extends UiElement implements Extension {
foreach($list as $key => $item) {
if ($item instanceof UiElement) {
$this->append($item);
continue;
}
elseif ( is_array($item) ) {
$obj = new UiElement("optgroup");