| Server IP : 103.48.194.25 / Your IP : 216.73.216.74 Web Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.33 System : Linux VMHostDefault 3.10.0-1160.42.2.el7.x86_64 #1 SMP Tue Sep 7 14:49:57 UTC 2021 x86_64 User : sieuthimay ( 1016) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/zomuaban.com/public_html/site/views/backend/pages/message/ |
Upload File : |
<style>
blockquote{
font-size: 14px;
color: #666;
}
</style>
<div id="send-new-msg" class="panel panel-default">
<div class="panel-body">
<div class="col-xs-12 col-sm-7 nopadding">
<?=getBlock('editor/tinymce')?>
</div>
<div class="col-xs-12 col-sm-5">
<label>SOẠN TIN NHẮN MỚI</label>
<ul>
<li>Tin nhắn này sẽ được gửi đến toàn bộ user</li>
<li>Kiểm tra nội dung thật kỹ trước khi gửi</li>
</ul>
<a class="submit-btn btn btn-primary btn-lg btn-block" style="margin-top:205px">Gửi tin nhắn</a>
</div>
</div>
</div>
<div class="col-xs-12 panel">
<table class="table table-hover panel-body">
<thead><tr>
<th>
<label style="margin:0;min-width:90px">
<input id="select-all-check" type="checkbox" value=""> Select all
</label>
<th>DANH SÁCH TIN NHẮN TỪ HỆ THỐNG</th>
<th></th>
</tr></thead>
<tbody class="list-group">
<?php foreach($msgs as $msg){?>
<tr data-id="<?=$msg->id?>">
<td>
<div class="checkbox" style="margin:0">
<label>
<input type="checkbox" value="<?=$msg->id?>"> check
</label>
</div>
</td>
<td><div><?=$msg->content?></div></td>
<td class="small" style="min-width: 130px;"><?=time_ago($msg->createDate)?></td>
</tr>
<?php } ?>
</tbody>
</table>
</div>