Source for file userlist.php

Documentation is available at userlist.php

  1. <?php
  2. /**
  3.  * R.E. Login 2.0 - Felhasználó lista - userlist.php
  4.  *
  5.  * Felhasználó lista 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. if(!class_exists('System'))
  20. {
  21.     exit('Ez a fajl nem erheto el kozvetlenul. Reszletek a readme.txt-ben.');
  22. }
  23.  
  24. /**
  25.  * @ignore
  26.  */
  27. require_once System::getIncLoginDir().'includes/userlist.php';
  28. $pageLinks $users->pageLinks(10);
  29. ?>
  30. <div align="center">
  31.     Felhasználó lista
  32. </div>
  33.  
  34. <div align="center">
  35.     <?php print $pageLinks?>
  36. </div>
  37. <table align="center" class="relogin-users">
  38.     <tr>
  39.         <th class="users-nick">Nick</th>
  40.         <th class="users-rank">Rang</th>
  41.         <th class="users-mail">E-mail</th>
  42.         <th class="users-profile">Adatlap</th>
  43.     </tr>
  44. <?php foreach ($users as $user?>
  45.     <tr>
  46.         <td class="users-nick"><?php print $user->username ?></td>
  47.         <td class="users-rank"><?php print $user->rankName(?></td>
  48.         <td class="users-mail"><?php print ($user->public_mail and !empty($user->T_users_useremail) )
  49.                 ? $user->T_users_useremail  "Rejtett"?></td>
  50.         <td class="users-profile"><a href="<?php print str_replace('%7Bid%7D',$user->T_users_userid,$profile_tpl_url?>">Adatlap</a></td>
  51.     </tr>
  52. <?php ?>
  53. </table>
  54. <div align="center">
  55.     <?php print $pageLinks?>
  56. </div>

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