Changeset 42 for trunk/www/shell.php


Ignore:
Timestamp:
Jun 16, 2009, 8:11:13 PM (15 years ago)
Author:
george
Message:
  • Přidáno: Podpora pro spouštění při startu a periodické zálohování.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/www/shell.php

    r38 r42  
    9090        $Task->ProcessAllCycle();
    9191      } else
     92      if($Command == 'ServerStartAll')
     93      {
     94        $DbResult = $this->Database->select('Server', 'Id');
     95        while($DbRow = $DbResult->fetch_assoc())
     96        {
     97          $Server = new Server($this->Database, $DbRow['Id']);
     98          $Server->Start();
     99        }
     100      } else
     101      if($Command == 'BackupCreateAll')
     102      {
     103        $Backup = new Backup($this->Database, 0);
     104        $DbResult = $this->Database->select('Server', 'Id');
     105        while($DbRow = $DbResult->fetch_assoc())
     106        {
     107          $Backup->Create($DbRow['Id']);
     108        }
     109      } else
    92110      if($Command == 'HistoryUpdate')
    93111      {
Note: See TracChangeset for help on using the changeset viewer.