PluginProbe
weForms – Easy Drag & Drop Contact Form Builder For WordPress / 1.2.8
weForms – Easy Drag & Drop Contact Form Builder For WordPress v1.2.8
1.6.7 1.6.8 1.6.9 1.6.12 1.6.13 1.6.14 1.6.15 1.6.16 1.6.17 1.6.18 1.6.19 1.6.2 1.6.20 1.6.21 1.6.22 1.6.23 1.6.24 1.6.25 1.6.26 1.6.27 1.6.28 1.6.3 1.6.4 1.6.5 1.6.6 All 74 releases
weforms / includes / email / template / footer.php

footer.php in weForms – Easy Drag & Drop Contact Form Builder For WordPress 1.2.8, at includes/email/template/footer.php

57 lines 2.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
6 if ( ! defined( 'ABSPATH' ) ) {
7 exit; // Exit if accessed directly
8 }
9
10 ?>
11 </div>
12 </td>
13 </tr>
14 </table>
15 <!-- End Content -->
16 </td>
17 </tr>
18 </table>
19 <!-- End Body -->
20 </td>
21 </tr>
22 </table>
23
24 <!-- Footer -->
25 <table border="0" cellpadding="10" cellspacing="0" width="600" id="template_footer">
26 <tr>
27 <td valign="top">
28 <table border="0" cellpadding="10" cellspacing="0" width="100%">
29 <tr>
30 <td colspan="2" valign="middle" id="credit">
31 <?php
32 $settings = weforms_get_settings( 'email_settings' );
33 if ( is_array( $settings ) && ( isset( $settings['footer_text'] ) && !empty( $settings['footer_text'] ) ) ) {
34 $footer_text = $settings['footer_text'];
35 }
36
37 $footer_text = empty( $footer_text ) ? sprintf( '&copy; %s. Powered by <a href="%s">weForms</a>.', get_bloginfo( 'name', 'display' ), 'https://wordpress.org/plugins/weforms/' ) : $footer_text;
38 $footer_text = wpautop( wp_kses_post( wptexturize( apply_filters( 'weforms_email_footer_text', $footer_text ) ) ) );
39
40 echo $footer_text;
41
42 do_action( 'weforms_email_after_footer' );
43 ?>
44 </td>
45 </tr>
46 </table>
47 </td>
48 </tr>
49 </table>
50 <!-- End Footer -->
51 </td>
52 </tr>
53 </table>
54 </div>
55 </body>
56 </html>
57