PluginProbe
Disk Usage Insights / 1.0
Disk Usage Insights v1.0
trunk 1.0 1.10 1.11 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9
disk-usage-insights / disk-usage-insights.php

disk-usage-insights.php in Disk Usage Insights 1.0, at disk-usage-insights.php

30 lines 720 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Disk Usage Insights
4 * Plugin URI: https://github.com/mgleis/disk-usage-insights
5 * Description: Find large files and folders in your WordPress installation in no time!
6 * Author: Marcel Gleis
7 * License: GPLv3
8 * Version: 1.0
9 */
10 if (!defined('ABSPATH')) { // Ensure running within WordPress
11 exit;
12 }
13
14 if (!is_admin()) { // Ensure the admin interface is in use
15 return;
16 }
17
18 add_action('plugins_loaded', 'mgleis_diskusageinsights_init_plugin');
19
20 use Mgleis\DiskUsageInsights\Plugin;
21
22 function mgleis_diskusageinsights_init_plugin() {
23 require_once __DIR__.'/vendor/autoload.php';
24
25 $version = md5_file(__FILE__);
26
27 $plugin = new Plugin($version);
28 $plugin->init();
29 }
30