Browse Source

allow rel and other stylesheet defaults to be overriden.

Taylor Otwell 13 years ago
parent
commit
c5c0ebc00a
1 changed files with 5 additions and 2 deletions
  1. 5 2
      laravel/html.php

+ 5 - 2
laravel/html.php

@@ -56,9 +56,12 @@ class HTML {
 	 */
 	 */
 	public static function style($url, $attributes = array())
 	public static function style($url, $attributes = array())
 	{
 	{
-		if ( ! array_key_exists('media', $attributes)) $attributes['media'] = 'all';
+		$defaults = array('media' => 'all', 'type' => 'text/css', 'rel' => 'stylesheet');
 
 
-		$attributes = array_merge($attributes, array('rel' => 'stylesheet', 'type' => 'text/css'));
+		foreach ($defaults as $attribute => $default)
+		{
+			if ( ! array_key_exists($attribute, $attributes)) $attributes[$attribute] = $default;
+		}
 
 
 		return '<link href="'.static::entities(URL::to_asset($url)).'"'.static::attributes($attributes).'>'.PHP_EOL;
 		return '<link href="'.static::entities(URL::to_asset($url)).'"'.static::attributes($attributes).'>'.PHP_EOL;
 	}
 	}