a48e37ad39
so as not to conflict with Profile or Profile2 module on existing sites
48 lines
1.4 KiB
PHP
48 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Drupal\zencrm_entities;
|
|
|
|
use Drupal\Core\Entity\EntityAccessControlHandler;
|
|
use Drupal\Core\Entity\EntityInterface;
|
|
use Drupal\Core\Session\AccountInterface;
|
|
use Drupal\Core\Access\AccessResult;
|
|
|
|
/**
|
|
* Access controller for the Hat entity.
|
|
*
|
|
* @see \Drupal\zencrm_entities\Entity\Hat.
|
|
*/
|
|
class HatAccessControlHandler extends EntityAccessControlHandler {
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {
|
|
/** @var \Drupal\zencrm_entities\Entity\HatInterface $entity */
|
|
switch ($operation) {
|
|
case 'view':
|
|
if (!$entity->isPublished()) {
|
|
return AccessResult::allowedIfHasPermission($account, 'view unpublished hat entities');
|
|
}
|
|
return AccessResult::allowedIfHasPermission($account, 'view published hat entities');
|
|
|
|
case 'update':
|
|
return AccessResult::allowedIfHasPermission($account, 'edit hat entities');
|
|
|
|
case 'delete':
|
|
return AccessResult::allowedIfHasPermission($account, 'delete hat entities');
|
|
}
|
|
|
|
// Unknown operation, no opinion.
|
|
return AccessResult::neutral();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) {
|
|
return AccessResult::allowedIfHasPermission($account, 'add hat entities');
|
|
}
|
|
|
|
}
|