Browse Source

Refactoring the form class.

Taylor Otwell 13 years ago
parent
commit
f28a2c5a4b
1 changed files with 10 additions and 18 deletions
  1. 10 18
      system/form.php

+ 10 - 18
system/form.php

@@ -145,7 +145,9 @@ class Form {
 	 */		
 	 */		
 	public static function input($type, $name, $value = null, $attributes = array())
 	public static function input($type, $name, $value = null, $attributes = array())
 	{
 	{
-		return '<input'.HTML::attributes(array_merge($attributes, array('type' => $type, 'name' => $name, 'value' => $value, 'id' => static::id($name, $attributes)))).'>'.PHP_EOL;
+		$id = static::id($name, $attributes);
+
+		return '<input'.HTML::attributes(array_merge($attributes, compact('type', 'name', 'value', 'id'))).'>'.PHP_EOL;
 	}
 	}
 
 
 	/**
 	/**
@@ -275,15 +277,9 @@ class Form {
 	{
 	{
 		$attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'name' => $name));
 		$attributes = array_merge($attributes, array('id' => static::id($name, $attributes), 'name' => $name));
 
 
-		if ( ! isset($attributes['rows']))
-		{
-			$attributes['rows'] = 10;
-		}
+		if ( ! isset($attributes['rows'])) $attributes['rows'] = 10;
 
 
-		if ( ! isset($attributes['cols']))
-		{
-			$attributes['cols'] = 50;
-		}
+		if ( ! isset($attributes['cols'])) $attributes['cols'] = 50;
 
 
 		return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
 		return '<textarea'.HTML::attributes($attributes).'>'.HTML::entities($value).'</textarea>'.PHP_EOL;
 	}
 	}
@@ -305,7 +301,9 @@ class Form {
 
 
 		foreach ($options as $value => $display)
 		foreach ($options as $value => $display)
 		{
 		{
-			$html[] = '<option'.HTML::attributes(array('value' => HTML::entities($value), 'selected' => ($value == $selected) ? 'selected' : null)).'>'.HTML::entities($display).'</option>';
+			$option_attributes = array('value' => HTML::entities($value), 'selected' => ($value == $selected) ? 'selected' : null);
+
+			$html[] = '<option'.HTML::attributes($option_attributes).'>'.HTML::entities($display).'</option>';
 		}
 		}
 
 
 		return '<select'.HTML::attributes($attributes).'>'.implode('', $html).'</select>'.PHP_EOL;
 		return '<select'.HTML::attributes($attributes).'>'.implode('', $html).'</select>'.PHP_EOL;
@@ -419,15 +417,9 @@ class Form {
 	 */
 	 */
 	private static function id($name, $attributes)
 	private static function id($name, $attributes)
 	{
 	{
-		if (array_key_exists('id', $attributes))
-		{
-			return $attributes['id'];
-		}
+		if (array_key_exists('id', $attributes)) return $attributes['id'];
 
 
-		if (in_array($name, static::$labels))
-		{
-			return $name;
-		}
+		if (in_array($name, static::$labels)) return $name;
 	}
 	}
 
 
 }
 }