add formField of type 'plain'

This commit is contained in:
Uwe Steinmann 2021-05-04 17:27:27 +02:00
parent 6b0b72a062
commit ef42392e7f

View File

@ -1111,6 +1111,9 @@ background-image: linear-gradient(to bottom, #882222, #111111);;
(!empty($value['cols']) ? ' rows="'.$value['cols'].'"' : '').
(!empty($value['required']) ? ' required' : '').">".(!empty($value['value']) ? $value['value'] : '')."</textarea>";
break;
case 'plain':
echo $value['value'];
break;
case 'input':
default:
switch($value['type']) {