Added support for <label> element

This commit is contained in:
Pedro Borges 2011-06-14 10:20:44 -03:00
parent af24e8db45
commit efb040c507

View File

@ -71,6 +71,19 @@ class Form {
return Session::get('csrf_token');
}
/**
* Create a HTML label element.
*
* @param string $name
* @param string $value
* @param array $attributes
* @return string
*/
public static function label($name, $value, $attributes = array())
{
return '<label for="'.$name.'"'.HTML::attributes($attributes).'>'.HTML::entities($value).'</label>'.PHP_EOL;
}
/**
* Create a HTML text input element.
*