| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: Plugin Report |
| 4 |
* Plugin URI: https://wordpress.org/plugins/plugin-report/ |
| 5 |
* Description: Provides detailed information about currently installed plugins |
| 6 |
* Version: 2.2.4 |
| 7 |
* Requires at least: 4.6 |
| 8 |
* Requires PHP: 5.6 |
| 9 |
* Author: Torsten Landsiedel |
| 10 |
* Author URI: https://torstenlandsiedel.de |
| 11 |
* License: GPLv3 |
| 12 |
* Network: true |
| 13 |
* |
| 14 |
* @package Plugin_Report |
| 15 |
*/ |
| 16 |
|
| 17 |
// If called without WordPress, exit. |
| 18 |
if ( ! defined( 'ABSPATH' ) ) { |
| 19 |
exit; |
| 20 |
} |
| 21 |
|
| 22 |
if ( is_admin() && ! class_exists( 'Plugin_Report' ) ) { |
| 23 |
require_once __DIR__ . '/class-plugin-report.php'; |
| 24 |
|
| 25 |
$plugin_report_instance = new Plugin_Report(); |
| 26 |
$plugin_report_instance->init(); |
| 27 |
} |
| 28 |
|