-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdont-mess-up-prod.php
More file actions
30 lines (25 loc) · 998 Bytes
/
Copy pathdont-mess-up-prod.php
File metadata and controls
30 lines (25 loc) · 998 Bytes
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
28
29
30
<?php
/**
* Plugin Name: Don't Mess Up Prod
* Plugin URI: https://github.com/davekellam/dont-mess-up-prod
* Description: Displays the current environment in the admin bar
* Version: 1.1.0
* Requires at least: 6.7
* Requires PHP: 8.0
* Author: Dave Kellam
* Author URI: https://davekellam.com
* License: GPL-2.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html
* Text Domain: dont-mess-up-prod
*
* @package DontMessUpProd
* @author Dave Kellam
* @copyright 2025 Dave Kellam
*/
namespace DontMessUpProd;
if ( ! defined( 'ABSPATH' ) ) { exit; } // Exit if accessed directly
define( 'DONT_MESS_UP_PROD_VERSION', '1.1.0' );
require_once plugin_dir_path( __FILE__ ) . 'includes/class-environment-indicator.php';
require_once plugin_dir_path( __FILE__ ) . 'includes/class-admin-settings.php';
Environment_Indicator::get_instance();
Admin_Settings::get_instance();