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
/
settings
/
emails.php
/
/
<?php /** * Display the table of emails. * * @author David Bisset * @package Charitable/Admin View/Settings * @copyright Copyright (c) 2023, WP Charitable LLC * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License * @since 1.0.0 * @version 1.8.2 Added checklist querystring value to action_url. * @version 1.8.7 Removed cf class from the email settings table. */ $helper = charitable_get_helper( 'emails' ); $emails = $helper->get_available_emails(); if ( count( $emails ) ) : foreach ( $emails as $email ) : $email = new $email(); $is_enabled = $helper->is_enabled_email( $email->get_email_id() ); $action_url = esc_url( add_query_arg( array( 'charitable_action' => $is_enabled ? 'disable_email' : 'enable_email', 'email_id' => $email->get_email_id(), '_nonce' => wp_create_nonce( 'email' ), ), admin_url( 'admin.php?page=charitable-settings&tab=emails' ) ) ); // if the querystring value of checklist exists then add it to the action_url. if ( isset( $_GET['checklist'] ) ) { // phpcs:ignore $action_url .= '&checklist=' . esc_attr( $_GET['checklist'] ); // phpcs:ignore } ?> <div class="charitable-settings-object charitable-email"> <h4><?php echo esc_html( $email->get_name() ); ?></h4> <span class="actions"> <?php if ( $is_enabled ) : $settings_url = esc_url( add_query_arg( array( 'group' => 'emails_' . $email->get_email_id(), ), admin_url( 'admin.php?page=charitable-settings&tab=emails' ) ) ); ?> <a href="<?php echo esc_url( $settings_url ); ?>" class="button button-primary"><?php esc_html_e( 'Email Settings', 'charitable' ); ?></a> <?php endif ?> <?php if ( ! $email->is_required() ) : ?> <?php if ( $is_enabled ) : ?> <a href="<?php echo esc_url( $action_url ); ?>" class="button"><?php esc_html_e( 'Disable Email', 'charitable' ); ?></a> <?php else : ?> <a href="<?php echo esc_url( $action_url ); ?>" class="button"><?php esc_html_e( 'Enable Email', 'charitable' ); ?></a> <?php endif ?> <?php endif ?> </span> </div> <?php endforeach ?> <?php else : esc_html_e( 'There are no emails available in your system.', 'charitable' ); endif;
/home/batcwwjx/./public_html/wp-content/plugins/charitable/includes/admin/views/settings/emails.php