You are here

advagg_bundler_test.module in Advanced CSS/JS Aggregation 8.4

Advanced CSS/JS aggregation testing module.

File

advagg_bundler/tests/modules/advagg_bundler_test/advagg_bundler_test.module
View source
<?php

/**
 * @file
 * Advanced CSS/JS aggregation testing module.
 */

/**
 * Implements hook_page_attachments().
 */
function advagg_bundler_test_page_attachments(array &$page) {
  if (\Drupal::service('path.current')
    ->getPath() == '/admin') {
    $page['#attached']['library'][] = 'advagg_bundler_test/test';
  }
}