switch simple/untyped r/w selectboxes on to use web-components

This commit is contained in:
ralf 2022-02-15 09:16:55 +02:00
parent 0fb32b7a6a
commit 5ff64259ee

View File

@ -86,9 +86,9 @@ function send_template()
$attrs = array_combine($attrs[2], $attrs[3]); $attrs = array_combine($attrs[2], $attrs[3]);
// add et2-prefix for <select-* or <date-* readonly="true" // add et2-prefix for <select-* or <date-* readonly="true"
if (isset($attrs['readonly']) && !in_array($attrs['readonly'], ['false', '0']) /*|| if (isset($attrs['readonly']) && !in_array($attrs['readonly'], ['false', '0']) ||
// also add it for untyped/simple <select without search or tags attribute // also add it for untyped/simple <select without search or tags attribute
$matches[1] === 'select' && empty($matches[2]) && !isset($attrs['type']) && !isset($attrs['search']) && !isset($attrs['tags'])*/) $matches[1] === 'select' && empty($matches[2]) && !isset($attrs['type']) && !isset($attrs['search']) && !isset($attrs['tags']))
{ {
return '<et2-'.$matches[1].$matches[2].' '.$matches[3].'></et2-'.$matches[1].$matches[2].'>'; return '<et2-'.$matches[1].$matches[2].' '.$matches[3].'></et2-'.$matches[1].$matches[2].'>';
} }
@ -141,4 +141,4 @@ function send_template()
echo $str; echo $str;
exit; // stop further processing eg. redirect to login exit; // stop further processing eg. redirect to login
} }