Changeset 630 for trunk/index.php


Ignore:
Timestamp:
Aug 26, 2009, 3:07:07 PM (15 years ago)
Author:
george
Message:
  • Přidáno: Podpora pro umístění světů na oddělených serverech. Vzdálené připojení k databázi.
  • Přidáno: Třída Realm pro sadu funkcí týkajících se světů.
  • Přidáno: Třída System pro reprezentaci obecných funkcí.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/index.php

    r628 r630  
    55foreach($_GET as $Index => $Item) $_GET[$Index] = addslashes($Item);
    66
    7 include_once('inc/config.php');
     7if(file_exists('inc/config.php')) include_once('inc/config.php');
     8  else die('Nenalezen soubor inc/config.php. Vytvořte jej z předlohy config.sample.php.');
    89
    910if(array_key_exists('RealmIndex', $_POST))
     
    2829session_start();
    2930include_once('inc/error.php');
    30 include_once('inc/db.php');
     31include_once('inc/database.php');
     32include_once('inc/module.php');
    3133include_once('inc/html.php');
     34include_once('inc/system.php');
    3235include_once('inc/player.php');
    3336include_once('inc/server.php');
     37include_once('inc/realm.php');
    3438
    3539// classes start
     40$System = new System($Config);
     41$db = $System->Database;
    3642$player = new Player($db);
    37 $server = new Server($db);
     43$server = new Server($System, 1);
    3844$html = new Html(0, $db);
    3945$html->Start();
Note: See TracChangeset for help on using the changeset viewer.