1 drupal.inc drupal_load_stylesheet($file, $optimize = NULL, $reset_basepath = TRUE)

Loads the stylesheet and resolves all @import commands.

Deprecated

since 1.0.0

See also

backdrop_load_stylesheet()

Related topics

File

core/includes/drupal.inc, line 879
Contains constants and function wrappers for Drupal 7.x compatibility.

Code

function drupal_load_stylesheet($file, $optimize = NULL, $reset_basepath = TRUE) {
  return backdrop_load_stylesheet($file, $optimize, $reset_basepath);
}