PluginProbe
Plugin Groups / 1.2.2
Plugin Groups v1.2.2
trunk 1.0.3 1.1.0 1.2.1 1.2.2 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.9 3.0.0
plugin-groups / plugincore.php

plugincore.php in Plugin Groups 1.2.2, at plugincore.php

40 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * @package Plugin_Groups
4 * @author David Cramer <david@digilab.co.za>
5 * @license GPL-2.0+
6 * @link https://cramer.co.za
7 * @copyright 2018 David Cramer <david@digilab.co.za>
8 *
9 * @wordpress-plugin
10 * Plugin Name: Plugin Groups
11 * Plugin URI: https://cramer.co.za
12 * Description: Organize plugins in the Plugins Admin Page by creating groups and filter types.
13 * Version: 1.2.2
14 * Author: David Cramer <david@digilab.co.za>
15 * Author URI: https://cramer.co.za/
16 * Text Domain: plugin-groups
17 * License: GPL-2.0+
18 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
19 * Domain Path: /languages
20 * Network: true
21 */
22
23 // If this file is called directly, abort.
24 if ( ! defined( 'WPINC' ) ) {
25 die;
26 }
27
28 define( 'PLORG_PATH', plugin_dir_path( __FILE__ ) );
29 define( 'PLORG_URL', plugin_dir_url( __FILE__ ) );
30 define( 'PLORG_VER', '1.2.2' );
31 define( 'PLORG_SLUG', 'plugin_groups' );
32
33 // load internals
34 require_once( PLORG_PATH . 'classes/class-plugin-groups.php' );
35 require_once( PLORG_PATH . 'classes/class-options.php' );
36 require_once( PLORG_PATH . 'classes/class-settings.php' );
37
38 // Load instance
39 add_action( 'plugins_loaded', array( 'Plugin_Groups', 'get_instance' ) );
40