function assetic_stylesheets

Returns an array of stylesheet URLs.

Parameters

array|string $inputs Input strings:

array|string $filters Filter names:

array $options An array of options:

Return value

array An array of stylesheet URLs

1 call to assetic_stylesheets()
debug.php in drupal/core/vendor/kriswallsmith/assetic/tests/Assetic/Test/Factory/Loader/templates/debug.php

File

drupal/core/vendor/kriswallsmith/assetic/src/functions.php, line 55

Code

function assetic_stylesheets($inputs = array(), $filters = array(), array $options = array()) {
  if (!isset($options['output'])) {
    $options['output'] = 'css/*.css';
  }
  return _assetic_urls($inputs, $filters, $options);
}