-
Notifications
You must be signed in to change notification settings - Fork 0
/
env-indicator.php
27 lines (22 loc) · 1.11 KB
/
env-indicator.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/*
Plugin Name: WP Engine Environment Indicator
Plugin URI: http://wpengine.com
Description: Changes the WordPress Toolbar color depending on the current WP Engine environment. Green indicates Production, Yellow indicates Staging and Red indicates Development.
Author: WP Engine
Version: 0.2
Author URI: http://wpengine.com
License: GPLv2 or later.
WP Engine Environment Incicator is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
any later version.
WP Engine Environment Incicator is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with WP Engine Environment Incicator. If not, see http://www.gnu.org/licenses/gpl-2.0.html.
*/
include_once __DIR__.'/class-env-indicator.php';
$wpengine_env_indicator = wpengine\EnvIndicator::get_instance();