Ignore:
Timestamp:
May 20, 2009, 8:26:17 AM (15 years ago)
Author:
george
Message:
  • Přidáno: Třída pro systém omezování počtu registrací. Automatické povolování registrací dle předchozího počtu hráčů online vůči zadané požadované hodnotě.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/pages/register.php

    r583 r596  
    11<?php
     2
     3include('inc/registration_limit.php');
     4
     5$RegistrationLimit = new RegistrationLimit($db, $server, $Config);
    26
    37function sha_password($account, $password)
     
    3640
    3741$db->select_db($Config['Mangos']['DatabaseRealmd']);
    38 $DbResult = $db->query('SELECT COUNT(*) FROM `account`');
    39 if($DbResult->num_rows >= $Config['Mangos']['MaxAccountCount'])
     42if($RegistrationLimit->GetFreeRegistrationCount() == 0)
    4043{
    41   echo('<div class="h10">Registrace jsou uzavřeny</div>');
    42   echo('<div class="h11">Limit vyčerpán</div>');
     44  echo('<div class="h10">Registrace pro dnešní den vyčerpány</div>');
     45  echo('<div class="h10">Dnes bylo '.$RegistrationLimit->GetPerDeyRegistrationCount().' volných registrací</div>');
    4346} else
    4447{
    45   echo('<div class="h11">Registrace otevřeny</div>');
     48  echo('<div class="h11">Pro tento den je povoleno '.$RegistrationLimit->GetPerDeyRegistrationCount().' volných registrací</div>');
     49  echo('<div class="h11">Zbývá ještě '.$RegistrationLimit->GetFreeRegistrationCount().' volných registrací</div>');
    4650  echo('<br />');
    4751
Note: See TracChangeset for help on using the changeset viewer.