summaryrefslogtreecommitdiffstats
path: root/lib/setup.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/setup.php')
-rw-r--r--lib/setup.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/lib/setup.php b/lib/setup.php
index c2757021f20..e9cb3da686c 100644
--- a/lib/setup.php
+++ b/lib/setup.php
@@ -31,6 +31,7 @@ else {
class OC_SETUP {
public static function install($options) {
+ global $SERVERROOT;
$error = array();
$dbtype = $options['dbtype'];
@@ -133,6 +134,21 @@ class OC_SETUP {
OC_GROUP::createGroup('admin');
OC_GROUP::addToGroup($username, 'admin');
+ foreach( array( "files_imageviewer", "files_publiclink" ) as $app ){
+
+ if(is_file("$SERVERROOT/apps/$app/appinfo/database.xml")){
+ OC_DB::createDbFromStructure("$SERVERROOT/apps/$app/appinfo/database.xml");
+ }
+
+ //run appinfo/install.php
+ if(is_file("$SERVERROOT/apps/$app/appinfo/install.php")){
+ include("$SERVERROOT/apps/$app/appinfo/install.php");
+ }
+
+ $info=OC_APP::getAppInfo("$SERVERROOT/apps/$app/appinfo/info.xml");
+ OC_APPCONFIG::setValue($app,'installed_version',$info['version']);
+ }
+
//create htaccess files for apache hosts
self::createHtaccess(); //TODO detect if apache is used