File: /home/slfopp7cb1df/public_html/sitepacket.com/system/app/Views/messages/chat/single_message.php
<?php
$files = unserialize($reply_info->files);
$total_files = count($files);
$download_caption = "";
if ($total_files) {
$download_lang = app_lang('download');
if ($total_files > 1) {
$download_lang = sprintf(app_lang('download_files'), $total_files);
}
$download_caption = anchor(get_uri("messages/download_message_files/" . $reply_info->id), "<i data-feather='paperclip' class='icon-16 me-1'></i>" . $download_lang, array("class" => "", "title" => $download_lang));
}
$message_class = "m-row-" . $reply_info->id;
if ($reply_info->from_user_id === $login_user->id) {
?>
<div class="chat-me <?php echo $message_class; ?>">
<div class="row">
<div class="col-md-12">
<div class="chat-msg js-chat-msg" data-message_id="<?php echo $reply_info->id; ?>"><?php
echo custom_nl2br(link_it(process_images_from_content($reply_info->message)));
if ($download_caption) {
echo view("includes/timeline_preview", array("files" => $files, "is_message_row" => true));
echo $download_caption;
}
?></div>
</div>
</div>
</div>
<?php } else {
?>
<div class="chat-other <?php echo $message_class; ?>">
<div class="row">
<div class="col-md-12">
<div class="avatar-xs avatar mr10" >
<?php
$avatar = get_avatar($reply_info->user_image);
if ($reply_info->user_type == "client") {
echo get_client_contact_profile_link($reply_info->from_user_id, " <img alt='...' src='" . $avatar . "' /> ", array("class" => "dark strong"));
} else {
echo get_team_member_profile_link($reply_info->from_user_id, " <img alt='...' src='" . $avatar . "' /> ", array("class" => "dark strong"));
}
?>
</div>
<div class="chat-msg js-chat-msg" data-message_id="<?php echo $reply_info->id ?>">
<?php
echo custom_nl2br(link_it(process_images_from_content($reply_info->message)));
if ($download_caption) {
echo view("includes/timeline_preview", array("files" => $files, "is_message_row" => true));
echo $download_caption;
}
?>
</div>
</div>
</div>
</div>
<?php } ?>
<script class="temp-script33">
//don't show duplicate messages
$("<?php echo '.' . $message_class; ?>:first").nextAll("<?php echo '.' . $message_class; ?>").remove();
</script>