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
/
www
/
wp-content
/
plugins
/
charitable
/
includes
/
interfaces
/
interface-charitable-email.php
/
/
<?php /** * Charitable Email interface. * * This defines a strict interface that emails must implement. * * @version 1.5.0 * @package Charitable/Interfaces/Charitable_Email_Interface * @author David Bisset * @copyright Copyright (c) 2023, WP Charitable LLC * @license http://opensource.org/licenses/gpl-2.0.php GNU Public License */ // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! interface_exists( 'Charitable_Email_Interface' ) ) : /** * Charitable_Email_Interface interface. * * @since 1.2.0 */ interface Charitable_Email_Interface { /** * Returns the email's ID. * * @since 1.2.0 * * @return string */ public static function get_email_id(); /** * Resend an email. * * @since 1.5.0 * * @param int $object_id An object ID. * @param array $args Mixed set of arguments. * @return boolean */ public static function resend( $object_id, $args = array() ); /** * Checks whether an email can be resent. * * @since 1.5.0 * * @param int $object_id An object ID. * @param array $args Mixed set of arguments. * @return boolean */ public static function can_be_resent( $object_id, $args = array() ); } endif;
/home/batcwwjx/www/wp-content/plugins/charitable/includes/interfaces/interface-charitable-email.php