class SubscriptionPermissionProvider in Commerce Recurring Framework 8
Provides additional permissions for subscriptions.
Hierarchy
- class \Drupal\entity\EntityPermissionProviderBase implements EntityHandlerInterface, EntityPermissionProviderInterface uses StringTranslationTrait
- class \Drupal\entity\UncacheableEntityPermissionProvider
- class \Drupal\commerce_recurring\SubscriptionPermissionProvider
- class \Drupal\entity\UncacheableEntityPermissionProvider
Expanded class hierarchy of SubscriptionPermissionProvider
File
- src/
SubscriptionPermissionProvider.php, line 11
Namespace
Drupal\commerce_recurringView source
class SubscriptionPermissionProvider extends UncacheableEntityPermissionProvider {
/**
* {@inheritdoc}
*/
protected function buildEntityTypePermissions(EntityTypeInterface $entity_type) {
$permissions = parent::buildEntityTypePermissions($entity_type);
$entity_type_id = $entity_type
->id();
$plural_label = $entity_type
->getPluralLabel();
$permissions["cancel any {$entity_type_id}"] = [
'title' => $this
->t('Cancel any @type', [
'@type' => $plural_label,
]),
];
$permissions["cancel own {$entity_type_id}"] = [
'title' => $this
->t('Cancel own @type', [
'@type' => $plural_label,
]),
];
return $permissions;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EntityPermissionProviderBase:: |
protected | property | The entity type bundle info. | |
EntityPermissionProviderBase:: |
public | function |
Builds permissions for the given entity type. Overrides EntityPermissionProviderInterface:: |
|
EntityPermissionProviderBase:: |
public static | function |
Instantiates a new instance of this entity handler. Overrides EntityHandlerInterface:: |
|
EntityPermissionProviderBase:: |
protected | function | Adds the provider and converts the titles to strings to allow sorting. | |
EntityPermissionProviderBase:: |
public | function | Constructs a new EntityPermissionProvider object. | |
StringTranslationTrait:: |
protected | property | The string translation service. | 1 |
StringTranslationTrait:: |
protected | function | Formats a string containing a count of items. | |
StringTranslationTrait:: |
protected | function | Returns the number of plurals supported by a given language. | |
StringTranslationTrait:: |
protected | function | Gets the string translation service. | |
StringTranslationTrait:: |
public | function | Sets the string translation service to use. | 2 |
StringTranslationTrait:: |
protected | function | Translates a string to the current language or to a given language. | |
SubscriptionPermissionProvider:: |
protected | function |
Builds permissions for the entity_type granularity. Overrides UncacheableEntityPermissionProvider:: |
|
UncacheableEntityPermissionProvider:: |
protected | function |
Builds permissions for the bundle granularity. Overrides EntityPermissionProviderBase:: |