Contributors: getpantheon, danielbachhuber, jspellman, jazzs3quence
Tags: Pantheon, hosting, environment-indicator
Requires at least: 4.9
Tested up to: 6.4.1
Stable tag: 0.4.4-dev
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
A heads-up display into your Pantheon environment.
This plugin provides situational awareness of the Pantheon plaform from within your WordPress dashboard. It's helpful to be reminded what environment you're in, as well as providing quick links to get back to Pantheon's dashboard, or to interface with your WordPress installation via the command line.
Pantheon HUD is in early stages of development. We want your feedback! Create a Github issue with questions, feature requests, or bug reports.
Installation is vanilla. The plugin should have no ill effect when the site is running locally or if you move your site off the Pantheon platform. It knows how to nerf itself in other environments.
By default, the Pantheon HUD appears for logged-in users with the manage_options
capability. You can instead restrict it to specific users with the pantheon_hud_current_user_can_view
filter:
add_filter( 'pantheon_hud_current_user_can_view', function(){
$current_user = wp_get_current_user();
if ( $current_user && in_array( $current_user->user_login, array( 'myuserlogin' ) ) ) {
return true;
}
return false;
});
1. Pantheon HUD is present in the WordPress toolbar. On hover, it displays environmental details and helpful links.
- Update CONTRIBUTING.md [#123]
- Added "environment-indicator" to tags [#128]
- Updates Pantheon WP Coding Standards to 2.0 [#131]
- Update Composer dependencies [#116] [#118]
- Update Actively Maintained anchor link [#102]
- Update Tested up to version.
- PHP 8.2 compatibility and testing [#110].
- Update Composer dependencies [#112].
- Update images for lint and test-behat jobs [#111].
- Make dependabot target develop branch [#109].
- Moves .distignore to .gitattributes [#106].
- Adds CONTRIBUTING.md and Github Action to automate deploys to wordpress.org [#103].
- Fixes issue where indicator didn't properly load on the frontend [#58].
- Improves performance by populating Pantheon HUD menu with an AJAX request on hover [#55].
- Cleans up PHPCS errors [#49].
- Fixes reversed argument order to
implode()
[#52].
- Uses inline style system to add admin bar styles to page [#44].
- Refactors API calls to use new API endpoints [#35].
- Restores the CSS for the logo image, while retaining inline attrs [#26].
- Defines image dimensions inline instead of via CSS [#23].
- Renders styles in
admin_head
instead ofadmin_footer
.
- Updates
terminus
stub command to use new syntax.
- Initial release / MVP functionality.
- Environment badge and basic container stats.
- Quick WP-CLI copy/paste.
- Links to other envs and to Pantheon dash.