You are here

ContentModerationNotificationsAccessController.php in Content Moderation Notifications 8

File

src/ContentModerationNotificationsAccessController.php
View source
<?php

namespace Drupal\content_moderation_notifications;

use Drupal\Core\Entity\EntityAccessControlHandler;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Session\AccountInterface;

/**
 * Defines an access controller for the content_moderation_notification entity.
 *
 * We set this class to be the access controller in ContentModerationNotification's entity annotation.
 *
 * @see \Drupal\content_moderation_notifications\Entity\ContentModerationNotification
 *
 * @ingroup content_moderation_notifications
 */
class ContentModerationNotificationsAccessController extends EntityAccessControlHandler {

  /**
   * {@inheritdoc}
   */
  public function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) {

    // The $opereration parameter tells you what sort of operation access is
    // being checked for.
    if ($operation == 'view') {
      return TRUE;
    }

    // Other than the view operation, we're going to be insanely lax about
    // access. Don't try this at home!
    return parent::checkAccess($entity, $operation, $account);
  }

}

Classes

Namesort descending Description
ContentModerationNotificationsAccessController Defines an access controller for the content_moderation_notification entity.