nstcactus / craft-bas-les-masques
Helps you detect if a user is being impersonated and get the originally signed in user
Installs: 226
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:craft-plugin
Requires
- craftcms/cms: ^4.0.0
This package is auto-updated.
Last update: 2024-11-07 13:09:21 UTC
README
Helps you detect if a user is being impersonated and get the originally signed-in user.
Requirements
This plugin requires Craft CMS 3.6.0 or later (might work with earlier 3.x versions, but I didn't test it, and you'll need to tweak the composer.json).
Starting with version 2.0.0, this plugin requires Craft 4.0.0 or later.
Installation
To install the plugin, follow these instructions.
-
Open your terminal and go to your Craft project:
cd /path/to/project
-
Then tell Composer to load the plugin:
composer require nstcactus/craft-bas-les-masques
-
In the Control Panel, go to Settings → Plugins and click the “Install” button for Bas les masques !.
Usage
From the twig templates
craft.basLesMasques.isImpersonating()
Return a boolean indicating if there is an ongoing impersonation.
craft.basLesMasques.getOriginalUser()
Return the User
element corresponding
to the original user (the one impersonating the other), or null
if there is no
ongoing impersonation.
Example
{% if craft.basLesMasques.isImpersonating() %} {{ craft.basLesMasques.getOriginalUser() }} {% endif %}
From PHP code
\nstcactus\baslesmasques\Plugin::getInstance()->service->isImpersonating()
Return a boolean indicating if there is an ongoing impersonation.
\nstcactus\baslesmasques\Plugin::getInstance()->service->getOriginalUser()
Return the User
element corresponding
to the original user (the one impersonating the other), or null
if there is no
ongoing impersonation.
What's with the strange name?
Bas les masques! is french for "Drop the act!" or "Stop pretending to be someone else".
Brought to you by nstCactus