WizardAccess.php in Flexiform 8
Namespace
Drupal\flexiform_wizard\EntityFile
contrib/wizard/src/Entity/WizardAccess.phpView source
<?php
namespace Drupal\flexiform_wizard\Entity;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Condition\ConditionAccessResolverTrait;
use Drupal\Core\Entity\EntityAccessControlHandler;
use Drupal\Core\Entity\EntityHandlerInterface;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Plugin\Context\ContextHandlerInterface;
use Drupal\Core\Plugin\ContextAwarePluginInterface;
use Drupal\Core\Session\AccountInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Access class for the flexiform_wizard entity type.
*/
class WizardAccess extends EntityAccessControlHandler implements EntityHandlerInterface {
use ConditionAccessResolverTrait;
/**
* The context handler.
*
* @var \Drupal\Core\Plugin\Context\ContextHandlerInterface
*/
protected $contextHandler;
/**
* Constructs an access control handler instance.
*
* @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
* The entity type definition.
* @param \Drupal\Core\Plugin\Context\ContextHandlerInterface $context_handler
* The context handler.
*/
public function __construct(EntityTypeInterface $entity_type, ContextHandlerInterface $context_handler) {
parent::__construct($entity_type);
$this->contextHandler = $context_handler;
}
/**
* {@inheritdoc}
*/
public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) {
return new static($entity_type, $container
->get('context.handler'));
}
/**
* Wraps the context handler.
*
* @return \Drupal\Core\Plugin\Context\ContextHandlerInterface
* The context handler.
*/
protected function contextHandler() {
return $this->contextHandler;
}
/**
* {@inheritdoc}
*/
protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
/** @var \Drupal\flexiform_wizard\Entity\Wizard $entity */
if ($operation == 'view') {
if (!$entity
->status()) {
return AccessResult::forbidden()
->addCacheableDependency($entity);
}
$contexts = $entity
->getContexts();
$conditions = $entity
->getAccessConditions();
foreach ($conditions as $condition) {
if ($condition instanceof ContextAwarePluginInterface) {
$this
->contextHandler()
->applyContextMapping($condition, $contexts);
}
}
return AccessResult::allowedIf($this
->resolveConditions($conditions, $entity
->getAccessLogic()));
}
return parent::checkAccess($entity, $operation, $account);
}
}
Classes
Name | Description |
---|---|
WizardAccess | Access class for the flexiform_wizard entity type. |