class NodePermissions
Same name in other branches
- 9 core/modules/node/src/NodePermissions.php \Drupal\node\NodePermissions
- 8.9.x core/modules/node/src/NodePermissions.php \Drupal\node\NodePermissions
- 11.x core/modules/node/src/NodePermissions.php \Drupal\node\NodePermissions
Provides dynamic permissions for nodes of different types.
Hierarchy
- class \Drupal\node\NodePermissions uses \Drupal\Core\Entity\BundlePermissionHandlerTrait, \Drupal\Core\StringTranslation\StringTranslationTrait
Expanded class hierarchy of NodePermissions
File
-
core/
modules/ node/ src/ NodePermissions.php, line 12
Namespace
Drupal\nodeView source
class NodePermissions {
use BundlePermissionHandlerTrait;
use StringTranslationTrait;
/**
* Returns an array of node type permissions.
*
* @return array
* The node type permissions.
* @see \Drupal\user\PermissionHandlerInterface::getPermissions()
*/
public function nodeTypePermissions() {
return $this->generatePermissions(NodeType::loadMultiple(), [
$this,
'buildPermissions',
]);
}
/**
* Returns a list of node permissions for a given node type.
*
* @param \Drupal\node\Entity\NodeType $type
* The node type.
*
* @return array
* An associative array of permission names and descriptions.
*/
protected function buildPermissions(NodeType $type) {
$type_id = $type->id();
$type_params = [
'%type_name' => $type->label(),
];
return [
"create {$type_id} content" => [
'title' => $this->t('%type_name: Create new content', $type_params),
],
"edit own {$type_id} content" => [
'title' => $this->t('%type_name: Edit own content', $type_params),
'description' => $this->t('Note that anonymous users with this permission are able to edit any content created by any anonymous user.'),
],
"edit any {$type_id} content" => [
'title' => $this->t('%type_name: Edit any content', $type_params),
],
"delete own {$type_id} content" => [
'title' => $this->t('%type_name: Delete own content', $type_params),
'description' => $this->t('Note that anonymous users with this permission are able to delete any content created by any anonymous user.'),
],
"delete any {$type_id} content" => [
'title' => $this->t('%type_name: Delete any content', $type_params),
],
"view {$type_id} revisions" => [
'title' => $this->t('%type_name: View revisions', $type_params),
'description' => t('To view a revision, you also need permission to view the content item.'),
],
"revert {$type_id} revisions" => [
'title' => $this->t('%type_name: Revert revisions', $type_params),
'description' => t('To revert a revision, you also need permission to edit the content item.'),
],
"delete {$type_id} revisions" => [
'title' => $this->t('%type_name: Delete revisions', $type_params),
'description' => $this->t('To delete a revision, you also need permission to delete the content item.'),
],
];
}
}
Members
Title Sort descending | Modifiers | Object type | Summary | Overrides |
---|---|---|---|---|
BundlePermissionHandlerTrait::generatePermissions | protected | function | Builds a permissions array for the supplied bundles. | |
NodePermissions::buildPermissions | protected | function | Returns a list of node permissions for a given node type. | |
NodePermissions::nodeTypePermissions | public | function | Returns an array of node type permissions. | |
StringTranslationTrait::$stringTranslation | protected | property | The string translation service. | 3 |
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. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.