Default view mode cannot be locked

Created on 14 April 2022, almost 3 years ago
Updated 16 July 2024, 9 months ago

Problem/Motivation

"Default" view mode cannot be locked, from the field settings. In my case it works when selecting "Full content" mode too

πŸ“Œ Task
Status

Needs work

Version

1.1

Component

Documentation

Created by

πŸ‡¬πŸ‡·Greece dimitriskr

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

Not all content is available!

It's likely this issue predates Contrib.social: some issue and comment data are missing.

  • πŸ‡©πŸ‡ͺGermany markdc Hamburg

    I'm using the Group module. I followed the documentation closely, but could not achieve protection. I had to dig through the issue queue to find this detail.

    Group does not come with a "Full" view by default. I had to add it manually and enable protection on it. Then protection was taking place.

    Re-opening this issue as a documentation task.

    And thank you for this great module!

  • πŸ‡ΊπŸ‡¦Ukraine nnevill Lutsk

    To fix the problem I simply unset entity_access_password_entity_view_mode_alter() and replaced it with a custom implementation where I added a single line:

      $password_check_view_mode = $view_mode == 'full' ? 'default' : $view_mode;
    

    Here is the full code.

    /**
     * Implements hook_module_implements_alter().
     */
    function project_backend_module_implements_alter(&$implementations, $hook) {
      // This contrib hook implementation is replaced
      // with project_backend_entity_view_mode_alter().
      if ($hook == 'entity_view_mode_alter') {
        unset($implementations['entity_access_password']);
      }
    }
    
    /**
     * Implements hook_entity_view_mode_alter().
     */
    function project_backend_entity_view_mode_alter(string &$view_mode, EntityInterface $entity): void {
      // Quick return to avoid instantiation.
      if ($view_mode == PasswordAccessManagerInterface::PROTECTED_VIEW_MODE) {
        return;
      }
      // Password access field treats 'full' view mode as 'default'.
      // So we need to explicitly pass the 'default' value.
      $password_check_view_mode = $view_mode == 'full' ? 'default' : $view_mode;
      /** @var PasswordAccessManagerInterface $password_access_manager */
      $password_access_manager = \Drupal::service('entity_access_password.password_access_manager');
      if ($password_access_manager->isEntityViewModeProtected($password_check_view_mode, $entity)) {
        $entity->addCacheContexts([EntityIsProtectedCacheContext::CONTEXT_ID . ':' . $entity->getEntityTypeId() . '||' . $entity->id() . '||' . $view_mode]);
    
        if (!$password_access_manager->hasUserAccessToEntity($entity)) {
          $view_mode = PasswordAccessManagerInterface::PROTECTED_VIEW_MODE;
        }
      }
    }
    
Production build 0.71.5 2024