function contextual_page_attachments in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/contextual/contextual.module \contextual_page_attachments()
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
File
- core/
modules/ contextual/ contextual.module, line 63 - Adds contextual links to perform actions related to elements on a page.
Code
function contextual_page_attachments(array &$page) {
if (!\Drupal::currentUser()
->hasPermission('access contextual links')) {
return;
}
$page['#attached']['library'][] = 'contextual/drupal.contextual-links';
}