File: /home/accemeff/vendor/craftcms/cms/docs/extend/user-permissions.md
# User Permissions
Modules and plugins can register new user permissions to the system using the [EVENT_REGISTER_PERMISSIONS](api:craft\services\UserPermissions::EVENT_REGISTER_PERMISSIONS) event:
```php
use craft\events\RegisterUserPermissionsEvent;
use craft\services\UserPermissions;
use yii\base\Event;
public function init()
{
parent::init();
Event::on(
UserPermissions::class,
UserPermissions::EVENT_REGISTER_PERMISSIONS,
function(RegisterUserPermissionsEvent $event) {
$event->permissions['Permission Group Name'] = [
'permissionName' => [
'label' => 'Permission Label',
],
];
}
);
}
```
Permissions can also have nested permissions by adding a `nested` key to the permission array.
```php
'permissionName' => [
'label' => 'Permission Label',
'nested' => [
'nestedPermissionName' => [
'label' => 'Nested Permission Label',
],
],
];
```
## Requiring Permissions
Controllers can require that the logged-in user has a permission by calling [requirePermission()](api:craft\web\Controller::requirePermission()).
```php
public function actionStayUpLate()
{
// Require the `stayUpLate` permission
$this->requirePermission('stayUpLate');
}
```
If the user doesn’t have that permission, then a 403 error will be returned.
Templates can also ensure that the user has a permission with the [requirePermission](../dev/tags/requirepermission.md) tag:
```twig
{% requirePermission 'stayUpLate' %}
```
## Checking Permissions
You can check if the logged-in user has a permission by calling <api:craft\web\User::checkPermission()>:
```php
// See if they have the `stayUpLate` permission
if (Craft::$app->user->checkPermission('stayUpLate')) {
// ...
}
```
You can also see if any given user has a permission by calling <api:craft\elements\User::can()>:
```php
/** @var \craft\elements\User $user */
if ($user->can('stayUpLate')) {
// ...
}
```