##// END OF EJS Templates
modificaciones del componente areas
modificaciones del componente areas

File last commit:

r0:1
r3:4
Show More
home.php
35 lines | 1.4 KiB | text/x-php | XmlPhpLexer
<div id="content_mensajes">
<span class="etiqueta">Private Messages</span>
<table cellspacing="0" id="tbl_lsMessages">
<thead>
<tr class="header_lsMessages">
<th style="width:25px;">&nbsp;</th>
<th style="width:350px;">Subject</th>
<th style="width:250px;">From</th>
<th style="width:150px;">Date</th>
</tr>
</thead>
<tbody>
<?php
if(isset($lista_mensajes)){
$j = $lista_mensajes->rowCount();
if($j>0){
while($datos_mensaje = $lista_mensajes->fetch()){
?>
<tr>
<td class="col_lsMessages">&nbsp;</td>
<td class="col_lsMessages"><a href="index.php?option=com_messages&controller=MailBoxes&action=getMessageMailbox&idmailbox=<?php echo($idmailbox); ?>&idmessage=<?php echo($datos_mensaje["idmessage"]); ?>&inicio=<?php echo($inicio); ?>"><?php echo $datos_mensaje['subject'];?></a></td>
<td class="col_lsMessages"><?php echo $datos_mensaje['from'];?></td>
<td class="col_lsMessages"><?php echo $datos_mensaje['date_message'];?></td>
</tr>
<?php
}
}else{
?>
<tr><td colspan="4" class="col_lsMessages">Messages not found</td></tr>
<?php }} ?>
</tbody>
</table>
</div>
<div class="link_tblFooter"><a href="index.php?option=com_messages&controller=MailBoxes&action=getMessagesInbox&idmailbox=<?php echo$idmailbox; ?>">View all</a></div>
<div style="clear: both; overflow: hidden"></div>