Browse Source

Added HTML::span method.

Taylor Otwell 13 years ago
parent
commit
7ca5a2359a
1 changed files with 12 additions and 0 deletions
  1. 12 0
      system/html.php

+ 12 - 0
system/html.php

@@ -35,6 +35,18 @@ class HTML {
 		return '<link href="'.static::entities(URL::to_asset($url)).'" rel="stylesheet" type="text/css" media="'.$media.'">'.PHP_EOL;
 	}
 
+	/**
+	 * Generate a HTML span.
+	 *
+	 * @param  string  $value
+	 * @param  array   $attributes
+	 * @return string
+	 */
+	public static function span($value, $attributes = array())
+	{
+		return '<span'.static::attributes($attributes).'>'.static::entities($value).'</span>';
+	}
+
 	/**
 	 * Generate a HTML link.
 	 *