Ignore:
Timestamp:
Aug 4, 2009, 9:53:52 AM (15 years ago)
Author:
george
Message:
  • Upraveno: Definice formulářů a tabulek ze souboru form_classes.php byly rozděleny do odpovídajících souborů ve složce view.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/view/debug.php

    r55 r56  
    33class DebugView extends Module
    44{
     5  var $ItemListFormClass = array(
     6    'Title' => 'Restarty',
     7    'Table' => 'Debug',
     8    'Items' => array(
     9      'Time' => array('Type' => 'String', 'Caption' => 'Čas', 'Default' => ''),
     10      'MangosVersion' => array('Type' => 'String', 'Caption' => 'Verze emulátoru', 'Default' => ''),
     11      'DbVersion' => array('Type' => 'String', 'Caption' => 'Verze databáze', 'Default' => ''),
     12      'MaxPlayerCount' => array('Type' => 'Integer', 'Caption' => 'Max. online hráčů', 'Default' => ''),
     13      'Uptime' => array('Type' => 'String', 'Caption' => 'Doba běhu', 'Default' => ''),
     14    ),
     15  );
     16  var $ItemFormClass = array(
     17    'Title' => 'Záznam restartu',
     18    'Table' => 'Debug',
     19    'Items' => array(
     20      'Time' => array('Type' => 'DateTime', 'Caption' => 'Čas', 'Default' => ''),
     21      'MangosVersion' => array('Type' => 'String', 'Caption' => 'Verze emulátoru', 'Default' => ''),
     22      'DbVersion' => array('Type' => 'String', 'Caption' => 'Verze databáze', 'Default' => ''),
     23      'MaxPlayerCount' => array('Type' => 'Integer', 'Caption' => 'Max. online hráčů', 'Default' => ''),
     24      'Uptime' => array('Type' => 'String', 'Caption' => 'Doba běhu', 'Default' => ''),
     25    ),
     26  );
     27 
    528  function ShowListOnRow($Row)
    629  {
     
    2043      {
    2144        $Output = '<h4>Ladící záznamy restartů</h4>';
    22         $Table = new Table('DebugList');
     45        $Table = new Table($this->ItemListFormClass);
    2346        $Table->OnRow = array($this, 'ShowListOnRow');
    2447        $Table->Definition['Table'] = '(SELECT * FROM Debug WHERE Server='.$_GET['Id'].')';
Note: See TracChangeset for help on using the changeset viewer.