LayoutPreviewAccessAllowed.php

Same filename and directory in other branches
  1. 9 core/modules/layout_builder/src/Access/LayoutPreviewAccessAllowed.php
  2. 8.9.x core/modules/layout_builder/src/Access/LayoutPreviewAccessAllowed.php
  3. 10 core/modules/layout_builder/src/Access/LayoutPreviewAccessAllowed.php

Namespace

Drupal\layout_builder\Access

File

core/modules/layout_builder/src/Access/LayoutPreviewAccessAllowed.php

View source
<?php

namespace Drupal\layout_builder\Access;

use Drupal\Core\Access\AccessibleInterface;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Session\AccountInterface;

/**
 * Accessible class to allow access for inline blocks in the Layout Builder.
 *
 * @internal
 *   Tagged services are internal.
 */
class LayoutPreviewAccessAllowed implements AccessibleInterface {
    
    /**
     * {@inheritdoc}
     */
    public function access($operation, ?AccountInterface $account = NULL, $return_as_object = FALSE) {
        if ($operation === 'view') {
            return $return_as_object ? AccessResult::allowed() : TRUE;
        }
        // The layout builder preview should only need 'view' access.
        return $return_as_object ? AccessResult::forbidden() : FALSE;
    }

}

Classes

Title Deprecated Summary
LayoutPreviewAccessAllowed Accessible class to allow access for inline blocks in the Layout Builder.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.