You are here

class CRMCorePermissions in CRM Core 8.2

Same name and namespace in other branches
  1. 8.3 src/CRMCorePermissions.php \Drupal\crm_core\CRMCorePermissions
  2. 8 src/CRMCorePermissions.php \Drupal\crm_core\CRMCorePermissions

Defines a class containing permission callbacks.

Hierarchy

Expanded class hierarchy of CRMCorePermissions

2 files declare their use of CRMCorePermissions
ActivityPermissions.php in modules/crm_core_activity/src/ActivityPermissions.php
Contains \Drupal\crm_core_activity\ActivityPermissions.
ContactPermissions.php in modules/crm_core_contact/src/ContactPermissions.php

File

src/CRMCorePermissions.php, line 17
Contains \Drupal\crm_core\CRMCorePermissions.

Namespace

Drupal\crm_core
View source
class CRMCorePermissions {
  use StringTranslationTrait;

  /**
   * Return permission names for a given CRM Core entity type.
   *
   * @param string $entity_type
   *   Entity type string.
   *
   * @return array
   *   Permissions.
   */
  public function entityTypePermissions($entity_type) {
    $entity_info = \Drupal::EntityTypeManager()
      ->getDefinition($entity_type);
    $labels = $this
      ->permissionLabels($entity_info);
    $permissions = array();

    // General 'administer' permission.
    $permissions['administer ' . $entity_type . ' entities'] = array(
      'title' => $this
        ->t('Administer @entity_type', array(
        '@entity_type' => $labels['plural'],
      )),
      'description' => $this
        ->t('Allows users to perform any action on @entity_type.', array(
        '@entity_type' => $labels['plural'],
      )),
      'restrict access' => TRUE,
    );

    // Generic create and edit permissions.
    $permissions['create ' . $entity_type . ' entities'] = array(
      'title' => $this
        ->t('Create @entity_type of any type', array(
        '@entity_type' => $labels['plural'],
      )),
    );
    if ($entity_info
      ->hasKey('user')) {
      $permissions['edit own ' . $entity_type . ' entities'] = array(
        'title' => $this
          ->t('Edit own @entity_type of any type', array(
          '@entity_type' => $labels['plural'],
        )),
      );
    }
    $permissions['edit any ' . $entity_type . ' entity'] = array(
      'title' => $this
        ->t('Edit any @entity_type of any type', array(
        '@entity_type' => $labels['singular'],
      )),
      'restrict access' => TRUE,
    );
    if ($entity_info
      ->hasKey('user')) {
      $permissions['view own ' . $entity_type . ' entities'] = array(
        'title' => $this
          ->t('View own @entity_type of any type', array(
          '@entity_type' => $labels['plural'],
        )),
      );
    }
    $permissions['view any ' . $entity_type . ' entity'] = array(
      'title' => $this
        ->t('View any @entity_type of any type', array(
        '@entity_type' => $labels['singular'],
      )),
      'restrict access' => TRUE,
    );

    // Per-bundle create and edit permissions.
    if ($entity_info
      ->hasKey('bundle')) {
      $bundles = \Drupal::service('entity_type.bundle.info')
        ->getBundleInfo($entity_type);
      foreach ($bundles as $bundle_name => $bundle_info) {
        $permissions += $this
          ->bundlePermissions($bundle_name, $bundle_info, $entity_info);
      }
    }
    return $permissions;
  }

  /**
   * Define per-bundle permissions.
   */
  protected function bundlePermissions($bundle_name, array $bundle_info, EntityTypeInterface $entity_info) {
    $labels = $this
      ->permissionLabels($entity_info);
    $permissions['create ' . $entity_info
      ->id() . ' entities of bundle ' . $bundle_name] = array(
      'title' => $this
        ->t('Create %bundle @entity_type', array(
        '@entity_type' => $labels['plural'],
        '%bundle' => $bundle_info['label'],
      )),
    );
    if ($entity_info
      ->hasKey('user')) {
      $permissions['edit own ' . $entity_info
        ->id() . ' entities of bundle ' . $bundle_name] = array(
        'title' => $this
          ->t('Edit own %bundle @entity_type', array(
          '@entity_type' => $labels['plural'],
          '%bundle' => $bundle_info['label'],
        )),
      );
    }
    $permissions['edit any ' . $entity_info
      ->id() . ' entity of bundle ' . $bundle_name] = array(
      'title' => $this
        ->t('Edit any %bundle @entity_type', array(
        '@entity_type' => $labels['singular'],
        '%bundle' => $bundle_info['label'],
      )),
      'restrict access' => TRUE,
    );
    if ($entity_info
      ->hasKey('user')) {
      $permissions['delete own ' . $entity_info
        ->id() . ' entities of bundle ' . $bundle_name] = array(
        'title' => $this
          ->t('Delete own %bundle @entity_type', array(
          '@entity_type' => $labels['plural'],
          '%bundle' => $bundle_info['label'],
        )),
      );
    }
    $permissions['delete any ' . $entity_info
      ->id() . ' entity of bundle ' . $bundle_name] = array(
      'title' => $this
        ->t('Delete any %bundle @entity_type', array(
        '@entity_type' => $labels['singular'],
        '%bundle' => $bundle_info['label'],
      )),
      'restrict access' => TRUE,
    );
    if ($entity_info
      ->hasKey('user')) {
      $permissions['view own ' . $entity_info
        ->id() . ' entities of bundle ' . $bundle_name] = array(
        'title' => $this
          ->t('View own %bundle @entity_type', array(
          '@entity_type' => $labels['plural'],
          '%bundle' => $bundle_info['label'],
        )),
      );
    }
    $permissions['view any ' . $entity_info
      ->id() . ' entity of bundle ' . $bundle_name] = array(
      'title' => $this
        ->t('View any %bundle @entity_type', array(
        '@entity_type' => $labels['singular'],
        '%bundle' => $bundle_info['label'],
      )),
      'restrict access' => TRUE,
    );
    return $permissions;
  }

  /**
   *
   * @param \Drupal\Core\Entity\EntityTypeInterface $entity_info
   *
   * @return mixed
   */
  protected function permissionLabels(EntityTypeInterface $entity_info) {
    $labels = $entity_info
      ->get("permission_labels");
    if (!isset($labels['singular'])) {
      $labels['singular'] = $entity_info
        ->getLabel();
    }
    if (!isset($labels['plural'])) {
      $labels['plural'] = $entity_info
        ->getLabel();
    }
    return $labels;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
CRMCorePermissions::bundlePermissions protected function Define per-bundle permissions.
CRMCorePermissions::entityTypePermissions public function Return permission names for a given CRM Core entity type.
CRMCorePermissions::permissionLabels protected function
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.