コード例 #1
0
ファイル: stylesheet.php プロジェクト: swk/bluebox
 public static function addCssAssets()
 {
     // if there is a jquery class avalible then get it to add any
     // css includes it needs at this time
     if (class_exists('jquery')) {
         jquery::addCssAssets();
     }
     // otherwise add our links to the events css collection string
     Event::$data['css'][] = self::renderLinks();
     // render any css code blocks in the header as well
     Event::$data['css'][] = self::renderCodeBlocks(FALSE);
 }