Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jalendport/craft-lockout
Temporarily lock certain users out of the control panel.
https://github.com/jalendport/craft-lockout
Last synced: 29 days ago
JSON representation
Temporarily lock certain users out of the control panel.
- Host: GitHub
- URL: https://github.com/jalendport/craft-lockout
- Owner: jalendport
- License: other
- Created: 2019-11-27T05:52:11.000Z (about 5 years ago)
- Default Branch: develop
- Last Pushed: 2023-06-09T04:37:04.000Z (over 1 year ago)
- Last Synced: 2024-11-16T07:26:55.504Z (about 1 month ago)
- Language: PHP
- Size: 52.7 KB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
Lockout_Temporarily lock certain users out of the control panel._
## Installation
### Requirements
This plugin requires Craft CMS 4.0.0 or later.
### Plugin Store
Log into your control panel and click on 'Plugin Store'. Search for 'Lockout'.
### Composer
1. Open your terminal and go to your Craft project:
```bash
cd /path/to/project
```2. Then tell Composer to load the plugin:
```bash
composer require jalendport/craft-lockout
```3. In the Control Panel, go to Settings → Plugins and click the “Install” button for Lockout.
## Using Lockout
When Lockout is enabled, any non-admin users will be effectively blocked from accessing the CP. Useful if you ever need to make some structural changes and want to prevent new content from being added to the production DB during that time.
### Settings
To enable Lockout, simply toggle the lightswitch. It's that simple!
There is also a message setting where you can pass a custom message to the error screen your users will see when they are locked out.
### Widget
![Widget UI](resources/img/widget.png)
In cases where you're using [Project Config](https://docs.craftcms.com/v3/project-config.html) and `allowAdminChanges` is set to `false` you won't be able to enable/disable Lockout via the plugin settings. Instead you'll want to add the Lockout widget to your CP dashboard - it provides the same functionality as the lightswitch on the plugin settings page.
### CLI
Lockout also provides two console commands for use in your deployment scripts:
```
./craft lockout/lockout/enable // Restrict non-admin users from accessing the CP../craft lockout/lockout/disable // Allow non-admin users to access the CP.
```## Found a Bug? Need Support?
Please open an [issue](https://github.com/jalendport/craft-lockout/issues) describing what's going wrong.
## Roadmap
Some things to do, and ideas for potential features:
* Provide the ability to customize which users are locked out or whitelisted.
If there's a feature you think should be added to Lockout, please open an [issue](https://github.com/jalendport/craft-lockout/issues). PRs are also welcome!
* * *
### Contributors
- Plugin development: [Jalen Davenport](jalendport.com) / @jalendport
- Icon: [Kiran Joseph](https://thenounproject.com/term/lock/680647/) from the [Noun Project](https://thenounproject.com)