Ignore:
Timestamp:
Aug 4, 2009, 5:32:06 PM (15 years ago)
Author:
george
Message:
  • Opraveno: Dále posunuta funkčnost podpory více světů na server.
File:
1 edited

Legend:

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

    r56 r57  
    9292      $Form->LoadValuesFromForm();
    9393      $Form->SaveValuesToDatabase(0);
    94       $Output = $this->SystemMessage('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.');
    9595    } else $Output = USER_BAD_ROLE;
    9696    return($Output);   
     
    103103      $Emulator = new Emulator($this->Database, $_GET['Id']);
    104104      $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');
    108109    return($Output);
    109110  }
     
    115116      $Emulator = new Emulator($this->Database, $_GET['Id']);
    116117      $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');
    120122    return($Output);
    121123  }
Note: See TracChangeset for help on using the changeset viewer.