| Server IP : 118.139.160.155 / Your IP : 216.73.217.176 Web Server : Apache System : Linux sg2plmcpnl504228.prod.sin2.secureserver.net 4.18.0-553.124.4.lve.el8.x86_64 #1 SMP Fri May 15 13:02:13 UTC 2026 x86_64 User : twll3xqyaqrh ( 9725459) PHP Version : 5.6.40 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/twll3xqyaqrh/public_html/Site WP/wp-content/plugins/redux-framework/ |
Upload File : |
<?php // phpcs:ignore Squiz.Commenting.FileComment.Missing
/**
* Redux, a simple, truly extensible and fully responsive option framework
* for WordPress themes and plugins. Developed with WordPress coding
* standards and PHP best practices in mind.
*
* Plugin Name: Redux
* Plugin URI: http://wordpress.org/plugins/redux-framework
* GitHub URI: reduxframework/redux-framework
* Description: Build better sites in WordPress fast!
* Version: 4.3.7
* Requires at least: 4.0
* Requires PHP: 7.1
* Author: Extendify
* Author URI: https://extendify.com
* License: GPLv3 or later
* License URI: http://www.gnu.org/licenses/gpl-3.0.txt
* Text Domain: redux-framework
* Provides: ReduxFramework
*
* @package ReduxFramework
* @author Extendify
* @license GNU General Public License, version 3
* @copyright 2012-2021 Redux.io
*/
// Exit if accessed directly.
defined( 'ABSPATH' ) || exit;
if ( ! defined( 'REDUX_PLUGIN_FILE' ) ) {
define( 'REDUX_PLUGIN_FILE', __FILE__ );
}
// Require the main plugin class.
require_once plugin_dir_path( __FILE__ ) . 'class-redux-framework-plugin.php';
// Register hooks that are fired when the plugin is activated and deactivated, respectively.
register_activation_hook( __FILE__, array( 'Redux_Framework_Plugin', 'activate' ) );
register_deactivation_hook( __FILE__, array( 'Redux_Framework_Plugin', 'deactivate' ) );
// Get plugin instance.
Redux_Framework_Plugin::instance();