Advertisement
Guest User

Untitled

a guest
Jan 12th, 2012
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.73 KB | None | 0 0
  1. <ul class="PanelInfo">
  2.                 <?php
  3.                 if ($this->_OnlineUsers->NumRows() > 0) {
  4.                     foreach($this->_OnlineUsers->Result() as $User) {
  5.                 ?>
  6.                     <li>
  7.                         <table width="100%" height="100%" border="0" cellpadding="0" cellspacing="0">
  8.                         <tr>
  9.                         <strong <?php echo ($User->Invisible == 1 ? 'class="Invisible"' : '')?>>
  10.                             <td width="15">
  11.                             <?php echo UserPhoto(is_null($Last->UserID)?$First:$Last); ?>
  12.                         </td><td width="5"></td><td align="left">
  13.                         <?php echo UserAnchor($User); ?>
  14.                         </td>
  15.                         </strong>
  16.                         <td width="30" align="left">
  17.                         <?php echo Gdn_Format::Date($User->Timestamp); ?>
  18.                         </td>
  19.                         </tr>
  20.                         </table>
  21.                     </li>
  22.                 <?php
  23.                     }
  24.                 }
  25.                 ?>
  26.             </ul>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement