Plugin Configuratie:

Deze plugin heeft geen configureerbare instellingen.
$value): ?>
Terug naar plugins
'; $html .= ''; $html .= ''; $html .= ''; $html .= ''; } elseif (is_numeric($value)) { $step = is_float($value) ? 'step="0.01"' : 'step="1"'; $html .= '
'; $html .= ''; $html .= ''; $html .= '
'; } elseif (is_array($value)) { $html .= '
'; $html .= ''; $html .= '
'; $html .= '
'; foreach ($value as $subKey => $subValue) { $html .= renderConfigField($subKey, $subValue, $name); } $html .= '
'; } else { $html .= '
'; $html .= ''; if (strlen($value) > 80 || str_contains($value, "\n")) { $html .= ''; } else { $html .= ''; } $html .= '
'; } return $html; }