|
public static function input($type, $name, $value = null, $attributes = array())
|
|
public static function input($type, $name, $value = null, $attributes = array())
|
|
$id = static::id($name, $attributes);
|
|
$id = static::id($name, $attributes);
|
|
return '<input'.HTML::attributes(array_merge($attributes, compact('type', 'name', 'value', 'id'))).'>'.PHP_EOL;
|
|
return '<input'.HTML::attributes(array_merge($attributes, compact('type', 'name', 'value', 'id'))).'>'.PHP_EOL;
|