PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 6.2.3
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v6.2.3
6.2.14 6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 All 196 releases
fluentform / app / Views / email / template / footer.php

footer.php in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 6.2.3, at app/Views/email/template/footer.php

42 lines 1.6 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Email Footer
4 */
5 // phpcs:disable WordPress.NamingConventions.PrefixAllGlobals.NonPrefixedVariableFound -- Template variables in view files
6 if ( ! defined( 'ABSPATH' ) ) {
7 exit;
8 }
9 $poweredBy = apply_filters_deprecated(
10 'fluentform_email_template_footer_credit',
11 [
12 'Powered by <a href="https://wordpress.org/plugins/fluentform/">FluentForm</a>.',
13 $form,
14 $notification
15 ],
16 FLUENTFORM_FRAMEWORK_UPGRADE,
17 'fluentform/email_template_footer_credit',
18 'Use fluentform/email_template_footer_credit instead of fluentform_email_template_footer_credit.'
19 );
20 $poweredBy = apply_filters('fluentform/email_template_footer_credit',$poweredBy, $form, $notification);
21 if(defined('FLUENTFORMPRO')) {
22 $poweredBy = '';
23 }
24 ?>
25 </div></td></tr></table></td></tr></table></td></tr></table>
26 <table border="0" cellpadding="10" cellspacing="0" width="600" id="template_footer"><tr><td valign="top"><table border="0" cellpadding="10" cellspacing="0" width="100%"><tr><td class="fluent_credit" colspan="2" valign="middle" id="credit">
27 <span><?php echo wp_kses_post($footerText); ?> <?php echo wp_kses_post($poweredBy); ?></span>
28 <?php
29 do_action_deprecated(
30 'fluentform_email_template_after_footer',
31 [
32 $form,
33 $notification
34 ],
35 FLUENTFORM_FRAMEWORK_UPGRADE,
36 'fluentform/email_template_after_footer',
37 'Use fluentform/email_template_after_footer instead of fluentform_email_template_after_footer.'
38 );
39 do_action( 'fluentform/email_template_after_footer', $form, $notification );
40 ?>
41 </td></tr></table></td></tr></table></td></tr></table></div></body></html>
42