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

contextual_preprocess()

File

core/modules/contextual/src/Hook/ContextualHooks.php, line 63

Class

ContextualHooks
Hook implementations for contextual.

Namespace

Drupal\contextual\Hook

Code

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.