예제 #1
0
파일: common.php 프로젝트: jaz303/zing
 public static function stylesheet_link_tag($css, $options = array())
 {
     $options['href'] = self::stylesheet_path($css);
     $options += array('rel' => 'stylesheet', 'type' => 'text/css');
     return HTMLHelper::empty_tag('link', $options);
 }