Browse Source

Auto detect label and add id to field

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

+ 14 - 0
system/form.php

@@ -2,6 +2,13 @@
 
 class Form {
 
+	/**
+	 * Stores lables names.
+	 *
+	 * @var array
+	 */
+	private static $labels = array();
+
 	/**
 	 * Open a HTML form.
 	 *
@@ -81,6 +88,8 @@ class Form {
 	 */		
 	public static function label($name, $value, $attributes = array())
 	{
+		static::$labels[] = $name;
+		
 		return '<label for="'.$name.'"'.HTML::attributes($attributes).'>'.HTML::entities($value).'</label>'.PHP_EOL;
 	}
 
@@ -202,6 +211,8 @@ class Form {
 		{
 			$attributes['checked'] = 'checked';
 		}
+		
+		(in_array($name, static::$labels)) ? $attributes['id'] = $name : null;
 
 		return static::input($type, $name, $value, $attributes);
 	}
@@ -217,6 +228,7 @@ class Form {
 	public static function textarea($name, $value = '', $attributes = array())
 	{
 		$attributes['name'] = $name;
+		(in_array($name, static::$labels)) ? $attributes['id'] = $name : null;
 
 		// -------------------------------------------------------
 		// Set the default number of rows.
@@ -249,6 +261,7 @@ class Form {
 	public static function select($name, $options = array(), $selected = null, $attributes = array())
 	{
 		$attributes['name'] = $name;
+		(in_array($name, static::$labels)) ? $attributes['id'] = $name : null;
 
 		$html_options = array();
 
@@ -278,6 +291,7 @@ class Form {
 		$attributes['type'] = $type;
 		$attributes['name'] = $name;
 		$attributes['value'] = $value;
+		(in_array($name, static::$labels)) ? $attributes['id'] = $name : null;
 
 		return '<input'.HTML::attributes($attributes).' />'.PHP_EOL;
 	}