PetAccessControlHandler.php in Previewable email templates 8
Same filename and directory in other branches
Namespace
Drupal\petFile
src/PetAccessControlHandler.phpView source
<?php
namespace Drupal\pet;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Entity\EntityAccessControlHandler;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Session\AccountInterface;
class PetAccessControlHandler extends EntityAccessControlHandler {
/**
* {@inheritdoc}
*
* Link the activities to the permissions. checkAccess is called with the
* $operation as defined in the routing.yml file.
*/
protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
switch ($operation) {
case 'view':
return AccessResult::allowedIfHasPermission($account, 'view PET entity');
case 'update':
return AccessResult::allowedIfHasPermission($account, 'edit PET entity');
case 'delete':
return AccessResult::allowedIfHasPermission($account, 'delete PET entity');
}
return AccessResult::neutral();
}
/**
* {@inheritdoc}
*
* Separate from the checkAccess because the entity does not yet exist, it
* will be created during the 'add' process.
*/
protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) {
return AccessResult::allowedIfHasPermission($account, 'add PET entity');
}
}
Classes
Name | Description |
---|---|
PetAccessControlHandler |