* @license GPL-2.0+ * @link * @copyright 2015 David Cramer * * @wordpress-plugin * Plugin Name: Plugin Groups * Plugin URI: http://CalderaWP.com * Description: Organize plugins in the Plugins Admin Page by creating groups and filter types * Version: 1.0.3 * Author: David Cramer * Author URI: http://digilab.co.za/ * Text Domain: plugin-groups * License: GPL-2.0+ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt * Domain Path: /languages */ // If this file is called directly, abort. if ( ! defined( 'WPINC' ) ) { die; } define('PLORG_PATH', plugin_dir_path( __FILE__ ) ); define('PLORG_URL', plugin_dir_url( __FILE__ ) ); define('PLORG_VER', '1.0.3' ); // load internals require_once( PLORG_PATH . 'classes/class-plugin-groups.php' ); require_once( PLORG_PATH . 'classes/class-options.php' ); require_once( PLORG_PATH . 'classes/class-settings.php' ); // Load instance add_action( 'plugins_loaded', array( 'Plugin_Groups', 'get_instance' ) );