2.0 upgrade test first
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
2023-12-07 12:39:20 +01:00
parent 166ec0575b
commit 29a2ab7567
301 changed files with 13082 additions and 6261 deletions

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td><input type="checkbox" name="{$fieldname}" value="1" <if( $fielddata['value'] == '1' )>checked="checked"</if> /></td>
</tr>

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td><input type="file" class="file" name="{$fieldname}" /></td>
</tr>

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td>{$fielddata['value']}</td>
</tr>

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td><input type="password" class="text" name="{$fieldname}" value="{$value}" /></td>
</tr>

View File

@@ -0,0 +1,3 @@
<tr>
<td colspan="2">$label</td>
</tr>

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td><select name="{$fieldname}<if $multiple == true>[]</if>"<if $multiple == true> multiple="multiple"</if>>{$options}</select></td>
</tr>

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td><input type="text" class="text" name="{$fieldname}" value="{$value}" /></td>
</tr>

View File

@@ -0,0 +1,4 @@
<tr>
<td>{$label}</td>
<td><textarea rows="12" cols="40" name="{$fieldname}">{$value}</textarea></td>
</tr>