contextual_page_attachments

contextual_page_attachments(array &$page)

Implements hook_page_attachments().

Adds the drupal.contextual-links library to the page for any user who has the 'access contextual links' permission.

See also

contextual_preprocess()

File

core/modules/contextual/contextual.module, line 62
Adds contextual links to perform actions related to elements on a page.

Code

1
2
3
4
5
6
7
function contextual_page_attachments(array &$page) {
  if (!\Drupal::currentUser()->hasPermission('access contextual links')) {
    return;
  }
 
  $page['#attached']['library'][] = 'contextual/drupal.contextual-links';
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.