3468151ab273321c6ace28a091f1be1aadfc3e1b
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d8 / hook / page_attachments.twig
1 /**
2  * Implements hook_page_attachments().
3  */
4 function {{ machine_name }}_page_attachments(array &$attachments) {
5   // Unconditionally attach an asset to the page.
6   $attachments['#attached']['library'][] = 'core/domready';
7
8   // Conditionally attach an asset to the page.
9   if (!\Drupal::currentUser()->hasPermission('may pet kittens')) {
10     $attachments['#attached']['library'][] = 'core/jquery';
11   }
12 }