From: Frank Karlitschek Date: Wed, 28 Sep 2011 11:52:26 +0000 (+0200) Subject: add status file. useful for external administration. show the ownClopud version at... X-Git-Tag: v3.0~101^2~64 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f2a7f230f14e0f30d9ce7ddcc6ad328ac4b0434f;p=nextcloud-server.git add status file. useful for external administration. show the ownClopud version at least in the config dialog. --- diff --git a/lib/util.php b/lib/util.php index 51d8cc4d643..dea3168e8fc 100644 --- a/lib/util.php +++ b/lib/util.php @@ -90,7 +90,15 @@ class OC_Util { * @return array */ public static function getVersion(){ - return array(1,90,0); + return array(1,91,0); + } + + /** + * get the current installed version string of ownCloud + * @return string + */ + public static function getVersionString(){ + return '2 beta 2'; } /** diff --git a/settings/templates/personal.php b/settings/templates/personal.php index eee5f3979c3..4406c080edc 100644 --- a/settings/templates/personal.php +++ b/settings/templates/personal.php @@ -40,3 +40,11 @@ + +

+ ownCloud + +

+ + + diff --git a/status.php b/status.php new file mode 100644 index 00000000000..01b0d7244cb --- /dev/null +++ b/status.php @@ -0,0 +1,43 @@ +. +* +*/ + +$RUNTIME_NOAPPS = TRUE; //no apps, yet + +require_once('lib/base.php'); + +if(OC_Config::getValue('installed')==1) $installed='true'; else $installed='false'; + + +$txt=' + + '.$installed.' + '.implode('.',OC_Util::getVersion()).' + ownCloud '.OC_Util::getVersionString().' + +'; + +echo($txt); + + + +?>