forked from reduxframework/redux-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredux-framework.php
executable file
·39 lines (35 loc) · 1.37 KB
/
redux-framework.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?php
/**
* The Redux Framework Plugin
*
* A great way to start using the Redux Framework immediately.
* WordPress coding standards and PHP best practices have been kept.
*
* @package ReduxFramework
* @author Dovy Paukstys <[email protected]>
* @license GPL-2.0+
* @link http://simplerain.com
* @copyright 2013 SimpleRain, Inc.
*
* @wordpress-plugin
* Plugin Name: Redux Framework
* Plugin URI: http://wordpress.org/plugins/redux-framework/
* Github URI: https://github.com/ReduxFramework/ReduxFramework
* Description: Redux is a simple, truly extensible options framework for WordPress themes and plugins.
* Version: 3.0.6
* Author: Redux Team
* Author URI: http://reduxframework.com
* Text Domain: redux-framework
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Domain Path: /ReduxFramework/lang
*/
// If this file is called directly, abort.
if ( ! defined( 'WPINC' ) ) {
die;
}
require_once( plugin_dir_path( __FILE__ ) . 'class-redux-plugin.php' );
// Register hooks that are fired when the plugin is activated, deactivated, and uninstalled, respectively.
register_activation_hook( __FILE__, array( 'ReduxFrameworkPlugin', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'ReduxFrameworkPlugin', 'deactivate' ) );
add_action( 'plugins_loaded', array( 'ReduxFrameworkPlugin', 'get_instance' ) );