Server : Apache System : Linux ls31.server.ly 3.10.0-962.3.2.lve1.5.68.el7.x86_64 #1 SMP Wed Apr 6 11:12:23 UTC 2022 x86_64 User : medchoco ( 2906) PHP Version : 8.3.16 Disable Function : mail Directory : /home/medchoco/www/wp-content/plugins/redux-framework/redux-core/templates/panel/ |
Upload File : |
<?php /** * The template for the main content of the panel. * 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.0.0 */ ?> <!-- Header Block --> <?php $this->get_template( 'header.tpl.php' ); ?> <!-- Intro Text --> <?php if ( isset( $this->parent->args['intro_text'] ) ) { ?> <div id="redux-intro-text"><?php echo wp_kses_post( $this->parent->args['intro_text'] ); ?></div> <?php } ?> <?php $this->get_template( 'menu-container.tpl.php' ); ?> <div class="redux-main"> <!-- Stickybar --> <?php $this->get_template( 'header-stickybar.tpl.php' ); ?> <div id="redux_ajax_overlay"> </div> <?php foreach ( $this->parent->sections as $k => $section ) { ?> <?php if ( isset( $section['customizer_only'] ) && true === $section['customizer_only'] ) { ?> <?php continue; ?> <?php } // phpcs:ignore Squiz.PHP.NonExecutableCode.Unreachable ?> <?php $section['class'] = isset( $section['class'] ) ? ' ' . $section['class'] : ''; ?> <?php $disabled = ''; ?> <?php if ( isset( $section['disabled'] ) && $section['disabled'] ) { ?> <?php $disabled = 'disabled '; ?> <?php } ?> <div id="<?php echo esc_attr( $k ); ?>_section_group" class="redux-group-tab <?php echo esc_attr( $disabled ); ?><?php echo esc_attr( $section['class'] ); ?>" data-rel="<?php echo esc_attr( $k ); ?>"> <?php $display = true; ?> <?php if ( isset( $_GET['page'] ) && $this->parent->args['page_slug'] === $_GET['page'] ) { // phpcs:ignore WordPress.Security.NonceVerification ?> <?php if ( isset( $section['panel'] ) && false === $section['panel'] ) { ?> <?php $display = false; ?> <?php } ?> <?php } ?> <?php if ( $display ) { /** * Action 'redux/page/{opt_name}/section/before' * * @param object $this ReduxFramework */ // phpcs:ignore WordPress.NamingConventions.ValidHookName do_action( "redux/page/{$this->parent->args['opt_name']}/section/before", $section ); $this->output_section( $k ); /** * Action 'redux/page/{opt_name}/section/after' * * @param object $this ReduxFramework */ // phpcs:ignore WordPress.NamingConventions.ValidHookName do_action( "redux/page/{$this->parent->args['opt_name']}/section/after", $section ); } ?> </div> <!-- section group --> <?php } ?> <?php /** * Action 'redux/page/{opt_name}/sections/after' * * @param object $this ReduxFramework */ // phpcs:ignore WordPress.NamingConventions.ValidHookName do_action( "redux/page/{$this->parent->args['opt_name']}/sections/after", $this ); ?> <div class="clear"></div> <!-- Footer Block --> <?php $this->get_template( 'footer.tpl.php' ); ?> <div id="redux-sticky-padder" style="display: none;"> </div> </div> <!-- redux main --> <div class="clear"></div>