22 lines
580 B
PHP
22 lines
580 B
PHP
<?php
|
|
$options = [];
|
|
$options = explode(";", $item->typedata);
|
|
?>
|
|
|
|
<select class="form-control" name="wfitem_<?=$item->name?>" id="wfitem_<?=$item->name?>_<?=$building->id?>">
|
|
<option></option>
|
|
<?php foreach($options as $opt): ?>
|
|
<?php
|
|
$key = $opt;
|
|
$label = $opt;
|
|
if(strpos($opt, "=") !== false) {
|
|
$opt_parts = explode('=', $opt);
|
|
$key = $opt_parts[0];
|
|
$label = $opt_parts[1];
|
|
}
|
|
?>
|
|
|
|
<option value="<?=$key?>" <?=($key == $item->value->value_string) ? "selected='selected'" : ""?>><?=$label?></option>
|
|
<?php endforeach; ?>
|
|
</select>
|