Advanced Web Server Manager
Complete File Manager & Terminal - Standalone Version
By Sid Gifari | Gifari Industries
Current path:
/
/
home
/
qtdcvxyp
/
public_html
/
sms
/
application
/
views
/
user
/
chat
✏️
Editing: _partialChatRecord.php
<?php if (!empty($chatList)) { foreach ($chatList as $chat_key => $chat_value) { $chat_type = ($chat_value->chat_user_id != $chat_user->id) ? 'replies' : 'sent'; $date_time = ($chat_value->chat_user_id != $chat_user->id) ? 'time_date_send' : 'time_date'; ?> <?php if ($chat_value->is_first) { ?> <li class="text text-center" style="margin: 0px;"> <h4 class="chattitle"><span><?php echo $this->lang->line('you_are_now_connected_on_chat') ?></span></h4> </li> <?php } else { ?> <li class="<?php echo $chat_type; ?>"> <p><?php echo $chat_value->message; ?></p> <span class="<?php echo $date_time; ?>"> <?php echo $this->customlib->dateyyyymmddToDateTimeformat($chat_value->created_at); ?></span> </li> <?php } ?> <?php } } ?>
💾 Save Changes
❌ Cancel