Ejemplo n.º 1
0
 function getRunningBackups()
 {
     global $config;
     if (!is_numeric($this->id)) {
         throw new Exception('host->getRunningBackups: ' . "Error: The ID for this object is not an integer.");
     }
     $backupGetter = new runningBackupGetter();
     $backupGetter->setLogStream($this->log);
     return $backupGetter->getByHost($this);
 }