800+
December 6, 2024
January 22, 2016
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;
});
No FAQ provided.
implode()
[#52].admin_head
instead of admin_footer
.terminus
stub command to use new syntax.Version | Download | Type |
---|---|---|
0.4.4 | Download | Stable |
0.4.3 | Download | Stable |
0.4.2 | Download | Stable |
0.4.1 | Download | Stable |
0.3.1 | Download | Stable |
0.3.0 | Download | Stable |
0.2.2 | Download | Stable |
0.2.1 | Download | Stable |
0.2.0 | Download | Stable |
0.1.4 | Download | Stable |
0.1.3 | Download | Stable |
0.1.2 | Download | Stable |
0.1.1 | Download | Stable |
0.1.0 | Download | Stable |
Development | Download | Trunk |