PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.28
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.28
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / summary-emails / base-plain.php

base-plain.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.28, at classes/views/summary-emails/base-plain.php

37 lines 694 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Base template for summary emails
4 *
5 * @since 6.7
6 *
7 * @package Formidable
8 *
9 * @var array $args Content args.
10 */
11
12 if ( ! defined( 'ABSPATH' ) ) {
13 die( 'You are not allowed to call this page directly.' );
14 }
15
16 $frm_settings = FrmAppHelper::get_settings();
17
18 echo '%%INNER_CONTENT%%';
19
20 FrmEmailSummaryHelper::plain_text_echo(
21 sprintf(
22 // translators: Contact support URL.
23 __( 'Need help? Get in touch with our team at %s', 'formidable' ),
24 esc_url_raw( $args['support_url'] )
25 )
26 );
27
28 echo "\r\n\r\n";
29
30 FrmEmailSummaryHelper::plain_text_echo(
31 sprintf(
32 // translators: Unsubscribe URL.
33 __( 'Unsubscribe: %s', 'formidable' ),
34 esc_url_raw( $args['unsubscribe_url'] )
35 )
36 );
37