HOME


Mini Shell 1.0
DIR: /home/otwalrll/.trash/wp-content/plugins/formidable/classes/views/summary-emails/
Upload File :
Current File : /home/otwalrll/.trash/wp-content/plugins/formidable/classes/views/summary-emails/base-plain.php
<?php
/**
 * Base template for summary emails
 *
 * @since 6.7
 * @package Formidable
 *
 * @var array $args Content args.
 */

if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}

$frm_settings = FrmAppHelper::get_settings();

echo '%%INNER_CONTENT%%';

FrmEmailSummaryHelper::plain_text_echo(
	sprintf(
		// translators: Contact support URL.
		__( 'Need help? Get in touch with our team at %s', 'formidable' ),
		esc_url_raw( $args['support_url'] )
	)
);

echo "\r\n\r\n";

FrmEmailSummaryHelper::plain_text_echo(
	sprintf(
		// translators: Unsubscribe URL.
		__( 'Unsubscribe: %s', 'formidable' ),
		esc_url_raw( $args['unsubscribe_url'] )
	)
);