uawdijnntqw1x1x1
IP : 216.73.216.109
Hostname : premium160.web-hosting.com
Kernel : Linux premium160.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
batcwwjx
/
.
/
public_html
/
wp-content
/
plugins
/
charitable
/
includes
/
admin
/
views
/
tools
/
.
/
.
/
tools.php
/
/
<?php /** * Display the main tools page wrapper. * * @author David Bisset * @package Charitable/Admin View/Tools * @copyright Copyright (c) 2023, WP Charitable LLC * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.8.1.6 * @version 1.8.1.6 */ $active_tab = isset( $_GET['tab'] ) ? esc_html( $_GET['tab'] ) : 'export'; // phpcs:ignore $group = isset( $_GET['group'] ) ? esc_html( $_GET['group'] ) : $active_tab; // phpcs:ignore $tab_no_form_tag = array( 'import', 'export', 'system-info', 'snippets', 'customize' ); $tab_no_fields = array( 'system-info', 'snippets', 'customize' ); $sections = charitable_get_admin_tools()->get_sections(); $show_return = $group !== $active_tab; ob_start(); ?> <div id="charitable-tools" class="wrap"> <h1 class="screen-reader-text"><?php echo get_admin_page_title(); // phpcs:ignore ?></h1> <h1><?php echo get_admin_page_title(); // phpcs:ignore ?></h1> <?php do_action( 'charitable_maybe_show_notification' ); ?> <h2 class="nav-tab-wrapper"> <?php foreach ( $sections as $tab => $name ) : // phpcs:ignore ?> <a href="<?php echo esc_url( add_query_arg( array( 'tab' => $tab ), admin_url( 'admin.php?page=charitable-tools' ) ) ); ?>" class="nav-tab <?php echo $active_tab == $tab ? 'nav-tab-active' : ''; ?>"><?php echo $name; // phpcs:ignore ?></a> <?php endforeach ?> </h2> <?php /** * Do or render something right before the tools form. * * @since 1.8.1.6 * * @param string $group The tools group we are viewing. */ do_action( 'charitable_before_admin_tools', $group ); ?> <?php if ( ! in_array( strtolower( $active_tab ), $tab_no_form_tag, true ) ) : ?> <form method="post" action="options.php"> <?php endif; ?> <table class="form-table"> <?php if ( ! in_array( strtolower( $active_tab ), $tab_no_form_tag, true ) ) : settings_fields( 'charitable_tools' ); endif; if ( ! in_array( strtolower( $active_tab ), $tab_no_fields, true ) ) : charitable_do_tools_fields( 'charitable_tools_' . $group, 'charitable_tools_' . $group ); else : charitable_admin_view( 'tools/' . $active_tab ); endif; ?> </table> <?php if ( ! in_array( strtolower( $active_tab ), $tab_no_form_tag, true ) ) : ?> <?php /** * Filter the submit button at the bottom of the tools table. * * @since 1.6.0 * * @param string $button The button output. */ echo apply_filters( 'charitable_tools_button_' . esc_attr( $group ), get_submit_button( null, 'primary', 'submit', true, null ) ); // phpcs:ignore ?> <?php endif; ?> <?php if ( ! in_array( strtolower( $active_tab ), $tab_no_form_tag, true ) ) : ?> </form> <?php endif; ?> <?php /** * Do or render something right after the tools form. * * @since 1.8.1.6 * * @param string $group The tools group we are viewing. */ do_action( 'charitable_after_admin_tools', $group ); ?> </div> <?php echo ob_get_clean(); // phpcs:ignore
/home/batcwwjx/./public_html/wp-content/plugins/charitable/includes/admin/views/tools/././tools.php