PluginProbe
FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses / 1.0.95
FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses v1.0.95
2.11.0 2.10.0 2.10.01 2.9.1 2.9.0 2.8.1 2.8.0 2.7.7 2.7.5 2.7.0 2.6.01 2.6.0 2.5.0 2.4.01 trunk 1.0.90 1.0.91 1.0.92 1.0.93 1.0.94 1.0.95 1.0.96 1.0.97 1.0.98 1.0.99 All 78 releases
fluent-community / app / Views / email / Default / _user_box_content.php

_user_box_content.php in FluentCommunity – Ultra-Fast High-Performance Social Network, Community, LMS & Online Courses 1.0.95, at app/Views/email/Default/_user_box_content.php

36 lines 1.8 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?>
2 <table width="100%" style="margin-bottom: 30px;" cellspacing="0" cellpadding="0" border="0">
3 <tr>
4 <td align="left">
5 <table cellspacing="0" cellpadding="0" border="0">
6 <tr>
7 <td valign="top" style="border-radius: 50%; padding: 4px; vertical-align: top;">
8 <a href="<?php echo esc_url($permalink); ?>">
9 <img alt="" src="<?php echo esc_url($user_avatar); ?>" width="22" height="22" style="border-radius: 50%; display: block;">
10 </a>
11 </td>
12 <td style="font-family: Arial, sans-serif; font-size: 16px;color: #333; padding-left: 10px; vertical-align: middle;">
13 <span style="font-weight: bold;"><?php echo esc_html($user_name); ?></span>
14 <span><?php esc_html_e('commented on:', 'fluent-community'); ?></span>
15 <a target="_blank" href="<?php echo esc_url($permalink); ?>">
16 <?php echo wp_kses_post($post_content); ?>
17 </a>
18 </td>
19 </tr>
20 </table>
21 </td>
22 </tr>
23 <tr>
24 <td style="text-align: left; font-family: Arial, sans-serif; font-size: 16px; line-height: 1.4; color: #333;">
25 <table style="background-color: #f7f7f7; margin: 10px 0" bgcolor="#f7f7f7" cellspacing="0" cellpadding="0" border="0"
26 width="100%">
27 <tr>
28 <td style="padding: 7px 20px;">
29 <?php \FluentCommunity\App\Services\CustomSanitizer::sanitizeRichText($content, true); ?>
30 </td>
31 </tr>
32 </table>
33 </td>
34 </tr>
35 </table>
36