PluginProbe ʕ •ᴥ•ʔ
Redux Framework / 4.4.8
Redux Framework v4.4.8
trunk 4.3.0 4.3.1 4.3.10 4.3.11 4.3.12 4.3.13 4.3.14 4.3.15 4.3.16 4.3.17 4.3.18 4.3.19 4.3.2 4.3.20 4.3.21 4.3.22 4.3.24 4.3.25 4.3.26 4.3.3 4.3.4 4.3.5 4.3.6 4.3.7 4.3.8 4.3.9 4.4.0 4.4.1 4.4.10 4.4.11 4.4.12 4.4.13 4.4.14 4.4.15 4.4.16 4.4.17 4.4.18 4.4.2 4.4.3 4.4.4 4.4.5 4.4.6 4.4.7 4.4.8 4.4.9 4.5.0 4.5.1 4.5.10 4.5.11 4.5.2 4.5.3 4.5.4 4.5.6 4.5.7 4.5.8 4.5.9
redux-framework / redux-framework.php
redux-framework Last commit date
ReduxCore 2 years ago redux-core 2 years ago redux-templates 2 years ago sample 2 years ago class-redux-framework-plugin.php 2 years ago index.php 4 years ago license.txt 4 years ago readme.txt 2 years ago redux-framework.php 2 years ago uninstall.php 4 years ago wpml-config.xml 4 years ago
redux-framework.php
43 lines
1 <?php // phpcs:ignore Squiz.Commenting.FileComment.Missing
2 /**
3 * Redux, a simple, truly extensible and fully responsive option framework
4 * for WordPress themes and plugins. Developed with WordPress coding
5 * standards and PHP best practices in mind.
6 *
7 * Plugin Name: Redux Framework
8 * Plugin URI: http://wordpress.org/plugins/redux-framework
9 * GitHub URI: reduxframework/redux-framework
10 * Description: Build better sites in WordPress fast!
11 * Version: 4.4.8
12 * Requires at least: 5.0
13 * Requires PHP: 7.1
14 * Author: Team Redux
15 * Author URI: https://redux.io
16 * License: GPLv3 or later
17 * License URI: http://www.gnu.org/licenses/gpl-3.0.txt
18 * Text Domain: redux-framework
19 * Provides: ReduxFramework
20 *
21 * @package ReduxFramework
22 * @author Team Redux
23 * @license GNU General Public License, version 3
24 * @copyright 2012-2023 Redux.io
25 */
26
27 // Exit if accessed directly.
28 defined( 'ABSPATH' ) || exit;
29
30 if ( ! defined( 'REDUX_PLUGIN_FILE' ) ) {
31 define( 'REDUX_PLUGIN_FILE', __FILE__ );
32 }
33
34 // Require the main plugin class.
35 require_once plugin_dir_path( __FILE__ ) . 'class-redux-framework-plugin.php';
36
37 // Register hooks that are fired when the plugin is activated and deactivated, respectively.
38 register_activation_hook( __FILE__, array( 'Redux_Framework_Plugin', 'activate' ) );
39 register_deactivation_hook( __FILE__, array( 'Redux_Framework_Plugin', 'deactivate' ) );
40
41 // Get plugin instance.
42 Redux_Framework_Plugin::instance();
43