Changeset 42
Legend:
- Unmodified
- Added
- Removed
-
trunk/www/global.php
r38 r42 205 205 $System->AddModule(new User()); 206 206 if(isset($_SERVER['REMOTE_ADDR'])) $System->Modules['User']->Check(); 207 else $System->Modules['User']->User['Id'] = 0; 207 208 208 209 $MonthNames = array('', 'Leden', 'Únor', 'Březen', 'Duben', 'Květen', 'Červen', 'Červenec', 'Srpen', 'Září', 'Říjen', 'Listopad', 'Prosinec'); -
trunk/www/page.php
r37 r42 48 48 <i>| Založeno na projektu <a href="http://svn.zdechov.net/trac/wowhosting/">WoW hosting</a>'. 49 49 ' | <a href="http://svn.zdechov.net/trac/wowhosting/browser">Zdrojové kódy</a>'. 50 ' | <a href="http://svn.zdechov.net/trac/wowhosting/log?verbose=on">Novinky</a> |'.50 ' | <a href="http://svn.zdechov.net/trac/wowhosting/log?verbose=on">Novinky</a>'. 51 51 ' | Správce: '.$this->System->Config['Web']['Admin']. 52 52 ' | E-mail: '.$this->System->Config['Web']['AdminEmail']; -
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.