function jsonapi_jsonapi_block_content_filter_access

Same name and namespace in other branches
  1. 9 core/modules/jsonapi/jsonapi.module \jsonapi_jsonapi_block_content_filter_access()
  2. 8.9.x core/modules/jsonapi/jsonapi.module \jsonapi_jsonapi_block_content_filter_access()
  3. 10 core/modules/jsonapi/jsonapi.module \jsonapi_jsonapi_block_content_filter_access()

Implements hook_jsonapi_ENTITY_TYPE_filter_access() for 'block_content'.

File

core/modules/jsonapi/jsonapi.module, line 181

Code

function jsonapi_jsonapi_block_content_filter_access(EntityTypeInterface $entity_type, AccountInterface $account) {
    // @see \Drupal\block_content\BlockContentAccessControlHandler::checkAccess()
    // \Drupal\jsonapi\Access\TemporaryQueryGuard adds the condition for
    // (isReusable()), so this does not have to.
    return [
        JSONAPI_FILTER_AMONG_ALL => AccessResult::allowedIfHasPermission($account, 'access block library'),
        JSONAPI_FILTER_AMONG_PUBLISHED => AccessResult::allowed(),
    ];
}

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