Browse Source

Added comments to HTML class.

Taylor Otwell 13 years ago
parent
commit
64704cf5c4
1 changed files with 6 additions and 0 deletions
  1. 6 0
      system/html.php

+ 6 - 0
system/html.php

@@ -146,6 +146,7 @@ class HTML {
 	public static function image($url, $alt = '', $attributes = array())
 	{
 		$attributes['alt'] = static::entities($alt);
+
 		return '<img src="'.static::entities(URL::to_asset($url)).'"'.static::attributes($attributes).'>';
 	}
 
@@ -205,6 +206,11 @@ class HTML {
 
 		foreach ($attributes as $key => $value)
 		{
+			// -------------------------------------------------------
+			// If the attribute key is numeric, assign the attribute
+			// value to the key. This allows for attributes such as
+			// "required", "checked", etc.
+			// -------------------------------------------------------
 			if (is_numeric($key))
 			{
 				$key = $value;