input-Feld

Hier wird die Verwendung des klassichen HTML-Input-Fields beschrieben

Ein input-field wird zur Eingabe von allgemeinen Werten im Formular verwendet.

/**
 * Create the input group for an element with the correct classes for errors.
 *
 * @param string $type        	
 * @param string $name        	
 * @param string $label        	
 * @param string $value        	
 * @param array $options        	
 * @return string
 */
public function input($type, $name, $label = null, $value = null, array $options = []) {
...}

Parameter für das Input-Field

Last updated