-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathadmin-ui.php
More file actions
27 lines (23 loc) · 881 Bytes
/
Copy pathadmin-ui.php
File metadata and controls
27 lines (23 loc) · 881 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
<?php
/**
* Plugin Name: Custom Admin UI
* Plugin URI: https://wordpress.org/plugins/admin-ui/
* Description: WordPress custom admin UI or admin theme. Turn your WordPress dashboard or admin area to be smoother and more beautiful.
* Version: 0.2.0
* Author: Useful Team
* Author URI: https://usefulteam.com
* License: GPL-3.0
* License URI: https://oss.ninja/gpl-3.0?organization=Useful%20Team&project=Custom%20Admin%20UI
* Text Domain: admin-ui
* Domain Path: /languages
*
* @package admin-ui
*/
defined( 'ABSPATH' ) || die( "Can't access directly" );
// Helper constants.
define( 'ADMINUI_PLUGIN_DIR', rtrim( plugin_dir_path( __FILE__ ), '/' ) );
define( 'ADMINUI_PLUGIN_URL', rtrim( plugin_dir_url( __FILE__ ), '/' ) );
define( 'ADMINUI_PLUGIN_VERSION', '0.2.0' );
// Require classes.
require __DIR__ . '/class-setup.php';
Adminui\Setup::init();