PluginProbe
Plugin Groups / 1.0.3
Plugin Groups v1.0.3
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.0.3, at plugincore.php

40 lines 1.1 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
7 * @copyright 2015 David Cramer <david@digilab.co.za>
8 *
9 * @wordpress-plugin
10 * Plugin Name: Plugin Groups
11 * Plugin URI: http://CalderaWP.com
12 * Description: Organize plugins in the Plugins Admin Page by creating groups and filter types
13 * Version: 1.0.3
14 * Author: David Cramer <david@digilab.co.za>
15 * Author URI: http://digilab.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 */
21
22 // If this file is called directly, abort.
23 if ( ! defined( 'WPINC' ) ) {
24 die;
25 }
26
27 define('PLORG_PATH', plugin_dir_path( __FILE__ ) );
28 define('PLORG_URL', plugin_dir_url( __FILE__ ) );
29 define('PLORG_VER', '1.0.3' );
30
31
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