theme_get_styles

Definition

theme_get_styles()
drupal/includes/theme.inc, line 332

Description

Return the HTML for a theme's stylesheets.

Code

function theme_get_styles() {
  $output = '';
  foreach (theme_add_style() as $style) {
    $output .= theme('stylesheet_import', $style);
  }
  return $output;
}