You are here

class VpprPermissions in Vocabulary Permissions Per Role 8

Class VpprPermissions.

@package Drupal\vppr

Hierarchy

Expanded class hierarchy of VpprPermissions

1 file declares its use of VpprPermissions
vppr.module in ./vppr.module
Vocabulary Permissions Per Role.

File

src/VpprPermissions.php, line 16

Namespace

Drupal\vppr
View source
class VpprPermissions implements ContainerInjectionInterface {
  use StringTranslationTrait;

  /**
   * The entity manager.
   *
   * @var \Drupal\Core\Entity\EntityTypeManagerInterface
   */
  protected $entityTypeManager;

  /**
   * Constructs a new instance.
   *
   * @param \Drupal\Core\Entity\EntityTypeManagerInterface $entity_type_manager
   *   The entity manager.
   */
  public function __construct(EntityTypeManagerInterface $entity_type_manager) {
    $this->entityTypeManager = $entity_type_manager;
  }

  /**
   * {@inheritdoc}
   */
  public static function create(ContainerInterface $container) {
    return new static($container
      ->get('entity_type.manager'));
  }

  /**
   * Defines permissions related to vppr.
   */
  public static function permissions() {
    $perms = [];
    $names = taxonomy_vocabulary_get_names();
    $vocabularies = Vocabulary::loadMultiple($names);
    foreach ($vocabularies as $vocabulary) {
      $perms['administer ' . $vocabulary
        ->id() . ' vocabulary terms'] = [
        'title' => t('Administer %name vocabulary terms', [
          '%name' => $vocabulary
            ->label(),
          '%vid' => $vocabulary
            ->id(),
        ]),
      ];
    }
    return $perms;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
StringTranslationTrait::$stringTranslation protected property The string translation service. 1
StringTranslationTrait::formatPlural protected function Formats a string containing a count of items.
StringTranslationTrait::getNumberOfPlurals protected function Returns the number of plurals supported by a given language.
StringTranslationTrait::getStringTranslation protected function Gets the string translation service.
StringTranslationTrait::setStringTranslation public function Sets the string translation service to use. 2
StringTranslationTrait::t protected function Translates a string to the current language or to a given language.
VpprPermissions::$entityTypeManager protected property The entity manager.
VpprPermissions::create public static function Instantiates a new instance of this class. Overrides ContainerInjectionInterface::create
VpprPermissions::permissions public static function Defines permissions related to vppr.
VpprPermissions::__construct public function Constructs a new instance.