AdminPanel erste Funktionen hinzugefügt (Formulare)

This commit is contained in:
R40fendt
2026-01-04 17:58:58 +01:00
parent b94e84ff62
commit f5946b0429
10 changed files with 349 additions and 8 deletions

View File

@@ -185,8 +185,8 @@ class Formular {
el.id,
el.name,
el.minitext,
el.public,
el.multiple
el.public==null?null:(el.public==1?true:false),
el.multiple==null?null:(el.multiple==1?true:false)
)
)
);
@@ -212,12 +212,12 @@ class Formular {
displayvalue: el.displayvalue,
placeholder: el.placeholder,
title: el.title,
required: el.required == 1,
required: el.required==null?null:(el.required==1?true:false),
maxlength: el.maxlength,
min: el.min,
max: el.max,
multiple: el.multiple == 1,
checked: el.checked == 1,
multiple: el.multiple==null?null:(el.multiple==1?true:false),
checked: el.checked==null?null:(el.checked==1?true:false),
})
)
);