HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux acmehomecare 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC 2025 x86_64
User: www-data (33)
PHP: 8.0.30
Disabled: 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_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/html/wp-content/plugins/redux-framework/redux-core/templates/panel/container.tpl.php
<?php
/**
 * The template for the main panel container.
 * Override this template by specifying the path where it is stored (templates_path) in your Redux config.
 *
 * @author      Redux Framework
 * @package     ReduxFramework/Templates
 * @version:    4.4.4
 */

$expanded = ( $this->parent->args['open_expanded'] ) ? ' fully-expanded' : ( ! empty( $this->parent->args['class'] ) ? ' ' . esc_attr( $this->parent->args['class'] ) : '' );
$nonce    = wp_create_nonce( 'redux_ajax_nonce' . $this->parent->args['opt_name'] );
$actionn  = ( 'network' === $this->parent->args['database'] && $this->parent->args['network_admin'] && is_network_admin() ? './edit.php?action=redux_' . $this->parent->args['opt_name'] : './options.php' );

// Last tab?
$this->parent->options['last_tab'] = ( isset( $_GET['tab'] ) && ! isset( $this->parent->transients['last_save_mode'] ) ) ? sanitize_text_field( wp_unslash( $_GET['tab'] ) ) : ''; // phpcs:ignore WordPress.Security.NonceVerification

?>
	<div
		class="redux-container<?php echo esc_attr( $expanded ); ?>">

		<form
			method="post"
			action="<?php echo esc_attr( $actionn ); ?>"
			data-nonce="<?php echo esc_attr( $nonce ); ?>"
			enctype="multipart/form-data"
			class="redux-form-wrapper"
			id="redux-form-wrapper"
			data-opt-name="<?php echo esc_attr( $this->parent->args['opt_name'] ); ?>">
			<input
				type="hidden" id="redux-compiler-hook"
				name="<?php echo esc_attr( $this->parent->args['opt_name'] ); ?>[compiler]"
				value=""/>
			<input
				type="hidden" id="currentSection"
				name="<?php echo esc_attr( $this->parent->args['opt_name'] ); ?>[redux-section]"
				value=""/>
			<?php if ( ! empty( $this->parent->options_class->no_panel ) ) { ?>
				<input
					type="hidden"
					name="<?php echo esc_attr( $this->parent->args['opt_name'] ); ?>[redux-no_panel]"
					value="<?php echo esc_attr( implode( '|', $this->parent->options_class->no_panel ) ); ?>"/>
			<?php } ?>
			<?php $this->init_settings_fields(); // Must run or the page won't redirect properly. ?>
			<input
				type="hidden" id="last_tab"
				name="<?php echo esc_attr( $this->parent->args['opt_name'] ); ?>[last_tab]"
				value="<?php echo esc_attr( $this->parent->options['last_tab'] ); ?>"/>
			<?php $this->get_template( 'content.tpl.php' ); ?>
		</form>
	</div>

<?php if ( isset( $this->parent->args['footer_text'] ) ) { ?>
	<div id="redux-sub-footer"><?php echo wp_kses_post( $this->parent->args['footer_text'] ); ?></div>
<?php } ?>