Changeset 57 for trunk/www/view/emulator.php
- Timestamp:
- Aug 4, 2009, 5:32:06 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/view/emulator.php
r56 r57 92 92 $Form->LoadValuesFromForm(); 93 93 $Form->SaveValuesToDatabase(0); 94 $Output = $this->System Message('Přidání nového emulátoru', 'Emulátor přidán.');94 $Output = $this->System->SystemMessage('Přidání nového emulátoru', 'Emulátor přidán.'); 95 95 } else $Output = USER_BAD_ROLE; 96 96 return($Output); … … 103 103 $Emulator = new Emulator($this->Database, $_GET['Id']); 104 104 $Emulator->Download(); 105 $Output = $this->SystemMessage('Stažení emulátoru', 'Úloha zařazena do fronty'); 106 $Output .= $this->ShowTaskList(); 107 } else $Output = $this->SystemMessage('Stažení emulátoru', 'Nebylo zadáno Id'); 105 $Output = $this->System->SystemMessage('Stažení emulátoru', 'Úloha zařazena do fronty'); 106 $TaskView = new TaskView($this->Database, $this->System); 107 $Output .= $TaskView->ItemList(); 108 } else $Output = $this->System->SystemMessage('Stažení emulátoru', 'Nebylo zadáno Id'); 108 109 return($Output); 109 110 } … … 115 116 $Emulator = new Emulator($this->Database, $_GET['Id']); 116 117 $Emulator->Compile(); 117 $Output = $this->SystemMessage('Překlad emulátoru', 'Úloha zařazena do fronty'); 118 $Output .= $this->ShowTaskList(); 119 } else $Output = $this->SystemMessage('Překlad emulátoru', 'Nebylo zadáno Id'); 118 $Output = $this->System->SystemMessage('Překlad emulátoru', 'Úloha zařazena do fronty'); 119 $TaskView = new TaskView($this->Database, $this->System); 120 $Output .= $TaskView->ItemList(); 121 } else $Output = $this->System->SystemMessage('Překlad emulátoru', 'Nebylo zadáno Id'); 120 122 return($Output); 121 123 }
Note:
See TracChangeset
for help on using the changeset viewer.