You are here

class LicensePermissionProvider in Commerce License 8.2

Provides permissions for the License entity.

This makes a few minor changes to the permissions provided by Entity module's generic permissions provider.

Hierarchy

Expanded class hierarchy of LicensePermissionProvider

File

src/LicensePermissionProvider.php, line 14

Namespace

Drupal\commerce_license
View source
class LicensePermissionProvider extends UncacheableEntityPermissionProvider {

  /**
   * {@inheritdoc}
   */
  public function buildPermissions(EntityTypeInterface $entity_type) {
    $permissions = parent::buildPermissions($entity_type);
    $entity_type_id = $entity_type
      ->id();

    // Mark the 'overview' permission as restricted.
    $permissions["access {$entity_type_id} overview"]['restrict access'] = TRUE;

    // Add a description to the 'create'  to make it clear that it only covers
    // admin creation, not creation via product purchase.
    $permissions["create {$entity_type_id}"]['description'] = $this
      ->t('Create licenses in administrative mode, bypassing the purchase of a product.');
    return $permissions;
  }

}

Members

Namesort descending Modifiers Type Description Overrides
EntityPermissionProviderBase::$entityTypeBundleInfo protected property The entity type bundle info.
EntityPermissionProviderBase::createInstance public static function Instantiates a new instance of this entity handler. Overrides EntityHandlerInterface::createInstance
EntityPermissionProviderBase::processPermissions protected function Adds the provider and converts the titles to strings to allow sorting.
EntityPermissionProviderBase::__construct public function Constructs a new EntityPermissionProvider object.
LicensePermissionProvider::buildPermissions public function Builds permissions for the given entity type. Overrides EntityPermissionProviderBase::buildPermissions
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.
UncacheableEntityPermissionProvider::buildBundlePermissions protected function Builds permissions for the bundle granularity. Overrides EntityPermissionProviderBase::buildBundlePermissions
UncacheableEntityPermissionProvider::buildEntityTypePermissions protected function Builds permissions for the entity_type granularity. Overrides EntityPermissionProviderBase::buildEntityTypePermissions