theme_get_styles
- Versions
- 4.6 – 4.7
theme_get_styles()
Return the HTML for a theme's stylesheets.
Code
includes/theme.inc, line 332
<?php
function theme_get_styles() {
$output = '';
foreach (theme_add_style() as $style) {
$output .= theme('stylesheet_import', $style);
}
return $output;
}
?>Login or register to post comments 