PluginProbe
Plugin Report / trunk
Plugin Report vtrunk
2.2.4 trunk 1.1 1.2 1.3 1.4 1.5 1.6 1.6.1 1.7 1.8 1.8.1 1.8.2 1.8.3 1.9 1.9.1 1.9.2 1.9.3 2.0.0 2.0.1 2.0.2 2.1 2.1.1 2.2.0 2.2.1 All 27 releases
plugin-report / rt-plugin-report.php

rt-plugin-report.php in Plugin Report trunk, at rt-plugin-report.php

28 lines 734 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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