Code Coverage  | 
     ||||||||||
Classes and Traits  | 
      Functions and Methods  | 
      Lines  | 
     ||||||||
| Total |         | 
      0.00%  | 
      0 / 1  | 
              | 
      0.00%  | 
      0 / 2  | 
      CRAP |         | 
      0.00%  | 
      0 / 11  | 
     
| FeedAccessControlHandler |         | 
      0.00%  | 
      0 / 1  | 
              | 
      0.00%  | 
      0 / 2  | 
      12 |         | 
      0.00%  | 
      0 / 11  | 
     
| checkAccess |         | 
      0.00%  | 
      0 / 1  | 
      6 |         | 
      0.00%  | 
      0 / 9  | 
     |||
| checkCreateAccess |         | 
      0.00%  | 
      0 / 1  | 
      2 |         | 
      0.00%  | 
      0 / 2  | 
     |||
| <?php | |
| /** | |
| * @file | |
| * Contains \Drupal\aggregator\FeedAccessControlHandler. | |
| */ | |
| namespace Drupal\aggregator; | |
| use Drupal\Core\Access\AccessResult; | |
| use Drupal\Core\Entity\EntityAccessControlHandler; | |
| use Drupal\Core\Entity\EntityInterface; | |
| use Drupal\Core\Session\AccountInterface; | |
| /** | |
| * Defines an access control handler for the feed entity. | |
| * | |
| * @see \Drupal\aggregator\Entity\Feed | |
| */ | |
| class FeedAccessControlHandler extends EntityAccessControlHandler { | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| protected function checkAccess(EntityInterface $entity, $operation, AccountInterface $account) { | |
| switch ($operation) { | |
| case 'view': | |
| return AccessResult::allowedIfHasPermission($account, 'access news feeds'); | |
| break; | |
| default: | |
| return AccessResult::allowedIfHasPermission($account, 'administer news feeds'); | |
| break; | |
| } | |
| } | |
| /** | |
| * {@inheritdoc} | |
| */ | |
| protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) { | |
| return AccessResult::allowedIfHasPermission($account, 'administer news feeds'); | |
| } | |
| } |