PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.10
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.10
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.10, at classes/views/summary-emails/base-plain.php

36 lines 691 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 * @package Formidable
7 *
8 * @var array $args Content args.
9 */
10
11 if ( ! defined( 'ABSPATH' ) ) {
12 die( 'You are not allowed to call this page directly.' );
13 }
14
15 $frm_settings = FrmAppHelper::get_settings();
16
17 echo '%%INNER_CONTENT%%';
18
19 FrmEmailSummaryHelper::plain_text_echo(
20 sprintf(
21 // translators: Contact support URL.
22 __( 'Need help? Get in touch with our team at %s', 'formidable' ),
23 esc_url_raw( $args['support_url'] )
24 )
25 );
26
27 echo "\r\n\r\n";
28
29 FrmEmailSummaryHelper::plain_text_echo(
30 sprintf(
31 // translators: Unsubscribe URL.
32 __( 'Unsubscribe: %s', 'formidable' ),
33 esc_url_raw( $args['unsubscribe_url'] )
34 )
35 );
36