| Server IP : 162.214.74.102 / Your IP : 216.73.217.114 Web Server : Apache System : Linux dedi-4363141.lrsys.com.br 3.10.0-1160.119.1.el7.tuxcare.els25.x86_64 #1 SMP Wed Oct 1 17:37:27 UTC 2025 x86_64 User : lrsys ( 1015) PHP Version : 5.6.40 Disable Function : exec,passthru,shell_exec,system MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/lrsys/www/lrsys_apps/team/application/views/backend/staff/ |
Upload File : |
<hr />
<div class="mail-env">
<!-- compose new email button -->
<div class="mail-sidebar-row visible-xs">
<a href="<?php echo base_url();?>index.php?staff/message/message_new" class="btn btn-success btn-icon btn-block">
<?php echo get_phrase('new_message');?>
<i class="entypo-pencil"></i>
</a>
</div>
<!-- Mail Body -->
<div class="mail-body">
<!-- message page body -->
<?php include $message_inner_page_name.'.php';?>
</div>
<!-- Sidebar -->
<div class="mail-sidebar" style="min-height: 800px;">
<!-- compose new email button -->
<div class="mail-sidebar-row hidden-xs">
<a href="<?php echo base_url();?>index.php?staff/message/message_new" class="btn btn-success btn-icon btn-block">
<?php echo get_phrase('new_message');?>
<i class="entypo-pencil"></i>
</a>
</div>
<!-- message user inbox list -->
<ul class="mail-menu">
<?php
$current_user = $this->session->userdata('login_type').'-'.$this->session->userdata('login_user_id');
$this->db->where('sender' , $current_user);
$this->db->or_where('reciever' , $current_user);
$message_threads = $this->db->get('message_thread')->result_array();
foreach($message_threads as $row):
// defining the user to show
if ($row['sender'] == $current_user)
$user_to_show = explode('-' , $row['reciever']);
if ($row['reciever'] == $current_user)
$user_to_show = explode('-' , $row['sender']);
$user_to_show_type = $user_to_show[0];
$user_to_show_id = $user_to_show[1];
$unread_message_number = $this->crud_model->count_unread_message_of_thread($row['message_thread_code']);
?>
<li class="<?php if (isset($current_message_thread_code) && $current_message_thread_code == $row['message_thread_code'])echo 'active';?>">
<a href="<?php echo base_url();?>index.php?staff/message/message_read/<?php echo $row['message_thread_code'];?>" style="padding:12px;">
<i class="entypo-dot"></i>
<?php echo $this->db->get_where($user_to_show_type , array($user_to_show_type.'_id' => $user_to_show_id))->row()->name;?>
<span class="badge badge-default pull-right" style="color:#aaa;"><?php echo $user_to_show_type;?></span>
<?php if ($unread_message_number > 0):?>
<span class="badge badge-secondary pull-right">
<?php echo $unread_message_number;?>
</span>
<?php endif;?>
</a>
</li>
<?php endforeach;?>
</ul>
</div>
</div>