Changeset 42 for trunk/www/shell.php
- Timestamp:
- Jun 16, 2009, 8:11:13 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/shell.php
r38 r42 90 90 $Task->ProcessAllCycle(); 91 91 } 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 92 110 if($Command == 'HistoryUpdate') 93 111 {
Note:
See TracChangeset
for help on using the changeset viewer.