colorbox_inline.module 322 B

1234567891011121314
  1. <?php
  2. /**
  3. * @file
  4. * Enabled the "colorbox inline" functionality for Drupal 8.
  5. */
  6. /**
  7. * Implements hook_page_attachments().
  8. */
  9. function colorbox_inline_page_attachments(array &$page) {
  10. \Drupal::service('colorbox.attachment')->attach($page);
  11. $page['#attached']['library'][] = 'colorbox_inline/colorbox_inline';
  12. }