Source for file onlinelist.php

Documentation is available at onlinelist.php

  1. <?php
  2. /**
  3.  * R.E. Login 2.0 - Online lista - onlinelist.php
  4.  *
  5.  * Online felhasználók listájának sablonja. <br />
  6.  * <br />
  7.  * <b>Dátum:</b> 2010.04.02.
  8.  *
  9.  * <b>Szerző weboldala:</b> {@link http://rimelek.hu/}<br />
  10.  * <b>Login weblapja:</b> {@link http://rimelek.hu/meghivos-loginrendszer-r-e-login-v2-0 R.E. Login v2.0}
  11.  *
  12.  * @author Takács Ákos (Rimelek), programmer [at] rimelek [dot] hu
  13.  * @copyright Copyright (C) 2010, Takács Ákos
  14.  * @license http://www.gnu.org/licenses/gpl.html
  15.  * @package RELogin
  16.  * @version 2.0
  17.  */
  18.  
  19.  
  20. if(!class_exists('System'))
  21. {
  22.     exit('Ez a fajl nem erheto el kozvetlenul. Reszletek a readme.txt-ben.');
  23. }
  24.  
  25. /**
  26.  * @ignore
  27.  */
  28. require_once System::getIncLoginDir().'includes/onlinelist.php';
  29.  
  30. $pageLinks $users->pageLinks(10);
  31. ?>
  32. <div align="center">
  33.     <?php print $pageLinks?>
  34. </div>
  35. <table align="center" class="relogin-users">
  36.     <tr>
  37.         <th class="users-nick">Nick</th>
  38.         <th class="users-rank">Rang</th>
  39.         <th class="users-mail">E-mail</th>
  40.         <th class="users-profile">Adatlap</th>
  41.     </tr>
  42. <?php foreach ($users as $user?>
  43.     <tr>
  44.         <td class="users-nick"><?php print $user->username ?></td>
  45.         <td class="users-rank"><?php print $user->rankName(?></td>
  46.         <td class="users-mail"><?php print ($user->public_mail and !empty($user->T_users_useremail) )
  47.                 ? $user->T_users_useremail  "Rejtett"?></td>
  48.         <td class="users-profile"><a href="<?php print str_replace('%7Bid%7D',$user->T_users_userid,$profile_tpl_url?>">Adatlap</a></td>
  49.     </tr>
  50. <?php ?>
  51. </table>
  52. <div align="center">
  53.     <?php print $pageLinks?>
  54. </div>

Documentation generated on Sun, 04 Apr 2010 22:43:47 +0200 by phpDocumentor 1.4.1