SocialGroupAccessControlHandler.php in Open Social 10.0.x
Same filename and directory in other branches
Namespace
Drupal\social_group\Entity\AccessFile
modules/social_features/social_group/src/Entity/Access/SocialGroupAccessControlHandler.phpView source
<?php
namespace Drupal\social_group\Entity\Access;
use Drupal\Core\Access\AccessResult;
use Drupal\Core\Config\ConfigFactoryInterface;
use Drupal\Core\Entity\EntityHandlerInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Session\AccountInterface;
use Drupal\group\Entity\Access\GroupAccessControlHandler;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
* Extended access controller for the Group entity.
*
* @see social_group_entity_type_alter()
*/
class SocialGroupAccessControlHandler extends GroupAccessControlHandler implements EntityHandlerInterface {
/**
* The configuration factory service.
*
* @var \Drupal\Core\Config\ConfigFactoryInterface
*/
protected $configFactory;
/**
* Constructs the group access control handler instance.
*
* @param \Drupal\Core\Entity\EntityTypeInterface $entity_type
* The entity type definition.
* @param \Drupal\Core\Config\ConfigFactoryInterface $config_factory
* The configuration factory service.
*/
public function __construct(EntityTypeInterface $entity_type, ConfigFactoryInterface $config_factory) {
parent::__construct($entity_type);
$this->configFactory = $config_factory;
}
/**
* {@inheritdoc}
*/
public static function createInstance(ContainerInterface $container, EntityTypeInterface $entity_type) {
return new static($entity_type, $container
->get('config.factory'));
}
/**
* {@inheritdoc}
*/
protected function checkCreateAccess(AccountInterface $account, array $context, $entity_bundle = NULL) {
if (!$account
->hasPermission('bypass group access') && !$account
->hasPermission('bypass create group access') && !$this->configFactory
->get('social_group.settings')
->get('allow_group_create')) {
return AccessResult::forbidden();
}
return parent::checkCreateAccess($account, $context, $entity_bundle);
}
}
Classes
Name | Description |
---|---|
SocialGroupAccessControlHandler | Extended access controller for the Group entity. |