quickedit_entity_view_alter(&$build, EntityInterface $entity, EntityViewDisplayInterface $display)
Implements hook_entity_view_alter().
File
- core/modules/quickedit/quickedit.module, line 155
- Provides in-place content editing functionality for fields.
Code
function quickedit_entity_view_alter(&$build, EntityInterface $entity, EntityViewDisplayInterface $display) { $build['#cache']['contexts'][] = 'user.permissions'; if (!\Drupal::currentUser()->hasPermission('access in-place editing')) { return; } $build['#attributes']['data-quickedit-entity-id'] = $entity->getEntityTypeId() . '/' . $entity->id(); }
Please login to continue.