function ContextualHooks::pageAttachments
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/ src/ Hook/ ContextualHooks.php, line 63
Class
- ContextualHooks
- Hook implementations for contextual.
Namespace
Drupal\contextual\HookCode
public function pageAttachments(array &$page) {
if (!\Drupal::currentUser()->hasPermission('access contextual links')) {
return;
}
$page['#attached']['library'][] = 'contextual/drupal.contextual-links';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.