-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin_widgets.php
executable file
·45 lines (38 loc) · 3.49 KB
/
admin_widgets.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/*
Plugin Name: _ANDYP - Admin - Dashboard widgets
Plugin URI: https://londonparkour.com
Description: <strong>🔩Widget</strong> | Allows you to create widgets on the admin dashboard.
Version: 1.0.0
Author: Andy Pearson
Author URI: https://londonparkour.com
*/
// ┌─────────────────────────────────────────────────────────────────────────┐
// │ Use composer autoloader │
// └─────────────────────────────────────────────────────────────────────────┘
require __DIR__.'/vendor/autoload.php';
// ┌─────────────────────────────────────────────────────────────────────────┐
// │ Register CONSTANTS │
// └─────────────────────────────────────────────────────────────────────────┘
define( 'WIDGET_PATH', __DIR__ );
define( 'WIDGET_URL', plugins_url( '/', __FILE__ ) );
define( 'WIDGET_FILE', __FILE__ );
// ┌─────────────────────────────────────────────────────────────────────────┐
// │ Initialise │
// └─────────────────────────────────────────────────────────────────────────┘
$widget = new widgets\initialise;
$widget->run();
// ┌─────────────────────────────────────────────────────────────────────────┐
// │ Load everything else ONLY on specific pages │
// └─────────────────────────────────────────────────────────────────────────┘
// add_action( 'current_screen', function () {
// $current_screen = \get_current_screen();
// if ($current_screen->id == "toplevel_page_adminwidgets" || $current_screen->id == 'dashboard') {
// require __DIR__.'/src/acf/acf_get_options.php';
// require __DIR__.'/src/acf/acf_dashboard.php';
// }
// });
// ┌─────────────────────────────────────────────────────────────────────────┐
// │ Load Widgets │
// └─────────────────────────────────────────────────────────────────────────┘
// require __DIR__.'/src/widgets/admin_widgets.php';