FieldPermissions.php in Votingapi Widgets 8
File
src/FieldPermissions.php
View source
<?php
namespace Drupal\votingapi_widgets;
use Drupal\Core\DependencyInjection\ContainerInjectionInterface;
use Symfony\Component\DependencyInjection\ContainerInterface;
use Drupal\Core\Entity\EntityFieldManager;
use Drupal\Core\StringTranslation\StringTranslationTrait;
class FieldPermissions implements ContainerInjectionInterface {
use StringTranslationTrait;
protected $fieldManager;
public function __construct(EntityFieldManager $field_manager) {
$this->fieldManager = $field_manager;
}
public static function create(ContainerInterface $container) {
return new static($container
->get('entity_field.manager'));
}
public function permissions() {
$map = $this->fieldManager
->getFieldMapByFieldType('voting_api_field');
$perms = [];
foreach ($map as $entity_type => $info) {
foreach ($info as $field_name => $field_info) {
foreach ($field_info['bundles'] as $bundle) {
$perms['vote on ' . $entity_type . ':' . $bundle . ':' . $field_name] = [
'title' => $this
->t('Vote on type @type from bundle @bundle in field @field', [
'@type' => $entity_type,
'@bundle' => $bundle,
'@field' => $field_name,
]),
];
$perms['edit own vote on ' . $entity_type . ':' . $bundle . ':' . $field_name] = [
'title' => $this
->t('Edit vote on type @type from bundle @bundle in field @field', [
'@type' => $entity_type,
'@bundle' => $bundle,
'@field' => $field_name,
]),
];
$perms['clear own vote on ' . $entity_type . ':' . $bundle . ':' . $field_name] = [
'title' => $this
->t('Clear vote on type @type from bundle @bundle in field @field', [
'@type' => $entity_type,
'@bundle' => $bundle,
'@field' => $field_name,
]),
];
$perms['edit voting status on ' . $entity_type . ':' . $bundle . ':' . $field_name] = [
'title' => $this
->t('Open or close voting on type @type from bundle @bundle in field @field', [
'@type' => $entity_type,
'@bundle' => $bundle,
'@field' => $field_name,
]),
];
}
}
}
return $perms;
}
}