Merge branch 'master' of https://github.com/mcNdave/picea-ui
This commit is contained in:
		
						commit
						bf7605eef6
					
				| @ -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(); | ||||
|     } | ||||
| 
 | ||||
|  | ||||
| @ -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"); | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user