You are here

protected function ProductAttributeValueAccessControlHandler::checkCreateAccess in Commerce Core 8.2

Performs create access checks.

This method is supposed to be overwritten by extending classes that do their own custom access checking.

Parameters

\Drupal\Core\Session\AccountInterface $account: The user for which to check access.

array $context: An array of key-value pairs to pass additional context when needed.

string|null $entity_bundle: (optional) The bundle of the entity. Required if the entity supports bundles, defaults to NULL otherwise.

Return value

\Drupal\Core\Access\AccessResultInterface The access result.

Overrides EntityAccessControlHandler::checkCreateAccess

File

modules/product/src/ProductAttributeValueAccessControlHandler.php, line 80

Class

ProductAttributeValueAccessControlHandler
Provides an access control handler for product attribute values.

Namespace

Drupal\commerce_product

Code

protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) {
  if ($account
    ->hasPermission($this->entityType
    ->getAdminPermission())) {
    return AccessResult::allowed()
      ->cachePerPermissions();
  }
  $product_attribute_storage = $this->entityTypeManager
    ->getStorage('commerce_product_attribute');
  $product_attribute = $product_attribute_storage
    ->create([
    'id' => $entity_bundle,
  ]);
  $result = $product_attribute
    ->access('update', $account, TRUE);
  return $result;
}