Browse Source

Added support for <label> element

Pedro Borges 14 years ago
parent
commit
efb040c507
1 changed files with 13 additions and 0 deletions
  1. 13 0
      system/form.php

+ 13 - 0
system/form.php

@@ -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.
 	 *