Distinguish the backend for ProcessWire development instances with different colors
beta
This module is compatible with ProcessWire 3.0
The module changes the color of the top toolbar and adds a unique text next to / instead of the ProcessWire logo there (depending on the screen size) so you can easily dinstinguish your development installations from the production systems.
You can enable development mode by either
- enabling the option in the module settings
- setting
$config->devMode = true;in site/config.php
I suggest to use the site/config.php option since this file usually needs to be adapted for development systems and you are less likely to accidentally ship your changes to the production system this way, unlike the module settings option.
The colors used for the background of the menu bar, the textual indicator and its foreground color can be set in the module's configuration.
You can override any settings for background, foreground and dev string present in the module configuration with entries in config.php.
The properties are:
$config->devModeBgColor$config->devModeFgColor$config->devModeDevString
The module supports the following admin themes:
- Default
- Reno
- Uikit
The module was inspired by a post in the ProcessWire support forum by benbyf.
The module includes the color picker from tovic which is licensed under the same terms.