function settings_tray_css_alter in Drupal 8
Same name and namespace in other branches
- 9 core/modules/settings_tray/settings_tray.module \settings_tray_css_alter()
Implements hook_css_alter().
File
- core/
modules/ settings_tray/ settings_tray.module, line 180 - Allows configuring blocks and other configuration from the site front-end.
Code
function settings_tray_css_alter(&$css, AttachedAssetsInterface $assets) {
// @todo Remove once conditional ordering is introduced in
// https://www.drupal.org/node/1945262.
$path = drupal_get_path('module', 'settings_tray') . '/css/settings_tray.theme.css';
if (isset($css[$path])) {
// Use 200 to come after CSS_AGGREGATE_THEME.
$css[$path]['group'] = 200;
}
}