Mercurial > hg > isophonics-drupal-site
view core/modules/content_moderation/src/ContentModerationStateAccessControlHandler.php @ 0:4c8ae668cc8c
Initial import (non-working)
author | Chris Cannam |
---|---|
date | Wed, 29 Nov 2017 16:09:58 +0000 |
parents | |
children |
line wrap: on
line source
<?php namespace Drupal\content_moderation; use Drupal\Core\Access\AccessResult; use Drupal\Core\Session\AccountInterface; use Drupal\Core\Entity\EntityAccessControlHandler; use Drupal\Core\Entity\EntityInterface; /** * The access control handler for the content_moderation_state entity type. * * @see \Drupal\content_moderation\Entity\ContentModerationState */ class ContentModerationStateAccessControlHandler extends EntityAccessControlHandler { /** * {@inheritdoc} */ public function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) { // ContentModerationState is an internal entity type. Access is denied for // viewing, updating, and deleting. In order to update an entity's // moderation state use its moderation_state field. return AccessResult::forbidden('ContentModerationState is an internal entity type.'); } /** * {@inheritdoc} */ protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) { // ContentModerationState is an internal entity type. Access is denied for // creating. In order to update an entity's moderation state use its // moderation_state field. return AccessResult::forbidden('ContentModerationState is an internal entity type.'); } }