/**
  * Shows the install screen
  */
 public static function showInstall()
 {
     $error = Setup::install();
     if ($error == '') {
         $txt = 'ownCloud is now installed';
         Setup::showContent('Success', $txt, 3);
     } else {
         $txt = 'ownCloud is NOT installed<br />' . $error;
         Setup::showContent('Error', $txt);
     }
 }
 /**
  * Shows the install screen
  */
 public static function showInstall()
 {
     $error = Setup::install();
     if ($error == '') {
         $txt = 'ownCloud is now installed.<br /><br />You must restart your Lighttpd-Server!!!<br /><br />You will find your ownCloud website here: http://Your_iOS_Device/owncloud<br />';
         Setup::showContent('Success', $txt, 3);
     } else {
         $txt = 'ownCloud is NOT installed<br />' . $error;
         Setup::showContent('Error', $txt);
     }
 }