Changeset 92 for trunk/www/Application/View
- Timestamp:
- Aug 15, 2013, 12:11:32 AM (11 years ago)
- Location:
- trunk/www
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www
- Property svn:ignore
-
old new 1 1 config.php 2 .buildpath 3 .project 4 .settings
-
- Property svn:ignore
-
trunk/www/Application/View/Backup.php
r78 r92 31 31 { 32 32 $Output = '<h4>Dostupné zálohy</h4>'; 33 $Table = new Table($this->ItemListFormClass );33 $Table = new Table($this->ItemListFormClass, $this->System); 34 34 $Table->OnRow = array($this, 'ShowListOnRow'); 35 35 $Table->Definition['Table'] = '(SELECT * FROM `Backup` WHERE `Server` = '.$Server->Id.')'; -
trunk/www/Application/View/Client.php
r78 r92 29 29 30 30 $Output = '<h4>Verze herního klienta</h4>'; 31 $Table = new Table($this->ItemListFormClass );31 $Table = new Table($this->ItemListFormClass, $this->System); 32 32 $Table->OnRow = array($this, 'ShowListOnRow'); 33 33 $Table->LoadValuesFromDatabase($this->Database); -
trunk/www/Application/View/Debug.php
r78 r92 45 45 { 46 46 $Output = '<h4>Ladící záznamy restartů</h4>'; 47 $Table = new Table($this->ItemListFormClass );47 $Table = new Table($this->ItemListFormClass, $this->System); 48 48 $Table->OnRow = array($this, 'ShowListOnRow'); 49 49 $Table->Definition['Table'] = '(SELECT * FROM Debug WHERE Realm='.$_GET['Id'].')'; -
trunk/www/Application/View/Emulator.php
r78 r92 39 39 40 40 $Output = '<h4>Seznam verzí emulátoru</h4>'; 41 $Table = new Table($this->ItemListFormClass );41 $Table = new Table($this->ItemListFormClass, $this->System); 42 42 $Table->Definition['Items']['Id'] = array('Type' => 'Hidden', 'Caption' => '', 'Default' => ''); 43 43 $Table->LoadValuesFromDatabase($this->Database); -
trunk/www/Application/View/Realm.php
r78 r92 112 112 //$Realm->UpdateServerList(); 113 113 $Output = '<h4>Seznam světů</h4>'; 114 $Table = new Table($this->ItemListFormClass );114 $Table = new Table($this->ItemListFormClass, $this->System); 115 115 //$Table->OnRow = array($this, 'ShowRealmListOnRow'); 116 116 $Table->Definition['Table'] = substr($Table->Definition['Table'], 0, -1).' WHERE `Realm`.`Server`='.$ServerId.')'; -
trunk/www/Application/View/Task.php
r78 r92 29 29 30 30 $Output = '<h4>Fronta úloh</h4>'; 31 $Table = new Table($this->ItemListFormClass );31 $Table = new Table($this->ItemListFormClass, $this->System); 32 32 $Table->OnRow = array($this, 'ShowListOnRow'); 33 33 $Table->Definition['Table'] = '(SELECT Id, (COALESCE(UNIX_TIMESTAMP(TimeEnd), UNIX_TIMESTAMP(NOW())) - UNIX_TIMESTAMP(TimeStart)) AS Duration, TimeCreate, Title, State FROM Task WHERE User='.$this->System->Modules['User']->User['Id'].' ORDER BY Id DESC)'; -
trunk/www/Application/View/Update.php
r78 r92 18 18 $Output = '<h4>Seznam dostupných aktulizací</h4>'; 19 19 $Output .= 'Před provedením aktualizace bude server zastaven a provedena záloha databáze.'; 20 $Table = new Table('EmulatorList' );20 $Table = new Table('EmulatorList', $this->System); 21 21 $Table->Definition['Table'] = substr($Table->Definition['Table'], 0, -1).' AND `Emulator`.`Revision` > '.$Server->Server['Database']['Emulator']['Revision'].' ORDER BY `Revision`)'; 22 22 $Table->Definition['Items']['Id'] = array('Type' => 'Hidden', 'Caption' => '', 'Default' => '');
Note:
See TracChangeset
for help on using the changeset viewer.