/**
  * Shows the check dependencies screen
  */
 public static function showCheckDependencies()
 {
     $error = Setup::checkDependencies();
     if ($error == '') {
         $txt = 'All ownCloud dependencies found';
         Setup::showContent('Dependency check', $txt, 2);
     } else {
         $txt = 'Dependencies not found.<br />' . $error;
         Setup::showContent('Dependency check', $txt);
     }
 }
 /**
  * Shows the check dependencies screen
  */
 public static function showCheckDependencies()
 {
     $error = Setup::checkDependencies();
     if ($error == '') {
         $txt = 'All ownCloud dependencies found.<br />The file download and the installtion to /var/www/owncloud takes a few minutes. Click Next and wait...';
         Setup::showContent('Dependency check', $txt, 2);
     } else {
         $txt = 'Dependencies not found.<br />' . $error;
         Setup::showContent('Dependency check', $txt);
     }
 }