removed span method from html class.

This commit is contained in:
Taylor Otwell 2011-07-22 11:19:41 -07:00
parent 1c5187b509
commit 9b46956fc9
1 changed files with 0 additions and 12 deletions

View File

@ -35,18 +35,6 @@ public static function style($url, $media = 'all')
return '<link href="'.static::entities(URL::to_asset($url)).'" rel="stylesheet" type="text/css" media="'.$media.'">'.PHP_EOL; return '<link href="'.static::entities(URL::to_asset($url)).'" rel="stylesheet" type="text/css" media="'.$media.'">'.PHP_EOL;
} }
/**
* Generate an HTML span tag.
*
* @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. * Generate a HTML link.
* *