You are here

AccessDenied.php in Flag 8.4

File

tests/modules/flag_test_plugins/src/Plugin/Flag/AccessDenied.php
View source
<?php

namespace Drupal\flag_test_plugins\Plugin\Flag;

use Drupal\Core\Access\AccessResult;
use Drupal\Core\Entity\EntityInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\flag\Plugin\Flag\EntityFlagType;
use Drupal\flag\FlagInterface;

/**
 * Test flag type plugin which denies access.
 *
 * @FlagType(
 *   id = "test_access_denied",
 *   title = @Translation("Flag type plugin which denies access."),
 *   entity_type = "node",
 * )
 */
class AccessDenied extends EntityFlagType {

  /**
   * {@inheritdoc}
   */
  public function actionAccess($action, FlagInterface $flag, AccountInterface $account, EntityInterface $flaggable = NULL) {
    if (empty($flaggable)) {

      // Grant access if the method is called with no flaggable parameter. This
      // is to ensure that access in the code being tested is properly passing
      // the flaggable entity and not only relying on the general access case.
      return AccessResult::allowed();
    }
    else {
      return AccessResult::forbidden();
    }
  }

}

Classes

Namesort descending Description
AccessDenied Test flag type plugin which denies access.