Changeset 3118794
- Timestamp:
- 07/16/2024 01:29:20 AM (4 months ago)
- Location:
- show-environment-in-admin-bar/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
show-environment-in-admin-bar/trunk/plugin.php
r1891868 r3118794 5 5 * Description: Add an indication to the Admin Bar of the environment WordPress is running in (e.g., Prod, Staging, QA, Dev, etc) 6 6 * Plugin URI: https://github.com/pbiron/shc-show-env 7 * Version: 1. 17 * Version: 1. 8 8 * Author: Paul V. Biron/Sparrow Hawk Computing 9 9 * Author URI: http://sparrowhawkcomputing.com … … 11 11 * License URI: http://www.gnu.org/licenses/gpl-2.0.html 12 12 * 13 * @copyright 2017-20 18Paul V. Biron/Sparrow Hawk Computing13 * @copyright 2017-20 Paul V. Biron/Sparrow Hawk Computing 14 14 * @package plugins 15 15 * @subpackage shc-show-env … … 41 41 * @var number 42 42 */ 43 const version = 1. 1;43 const version = 1.; 44 44 45 45 /** … … 86 86 // priority=1 is to get it as far to the right as possible, 87 87 // hopefully to the right of my-account 88 add_action( 'admin_bar_menu', array( __CLASS__, 'add_admin_bar_node' ), 1);89 88 add_action( 'admin_bar_menu', array( __CLASS__, 'add_admin_bar_node' ), ); 89 90 90 add_action( 'wp_enqueue_scripts', array( __CLASS__, 'enqueue_styles' ) ); 91 91 add_action( 'admin_enqueue_scripts', array( __CLASS__, 'enqueue_styles' ) ); -
show-environment-in-admin-bar/trunk/readme.txt
r2325439 r3118794 4 4 Tags: admin, admin-bar 5 5 Requires at least: 4.6 6 Tested up to: 5.57 Stable tag: 1. 16 Tested up to: 7 Stable tag: 1. 8 8 License: GPLv2 or later 9 9 License URL: http://www.gnu.org/licenses/gpl-2.0.html … … 55 55 == Changelog == 56 56 57 58 59 60 57 61 = 1.1 = 58 62
Note: See TracChangeset
for help on using the changeset viewer.