summaryrefslogtreecommitdiffstats
path: root/lib/private/installer.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-07-03 14:16:29 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2015-07-03 18:00:16 +0200
commit1385b1ec487d1ce97ca520247bc32e35b23d837b (patch)
tree55fb9e10a6c0569c3f53a2b46649a17dd65281b3 /lib/private/installer.php
parentd3ac73c0c9419750c65d3ccb8f0b0c25edacf34f (diff)
downloadnextcloud-server-1385b1ec487d1ce97ca520247bc32e35b23d837b.tar.gz
nextcloud-server-1385b1ec487d1ce97ca520247bc32e35b23d837b.zip
Remove OC_Appconfig
Diffstat (limited to 'lib/private/installer.php')
-rw-r--r--lib/private/installer.php18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/private/installer.php b/lib/private/installer.php
index 2da525d3ed7..37af8d0edcb 100644
--- a/lib/private/installer.php
+++ b/lib/private/installer.php
@@ -114,7 +114,7 @@ class OC_Installer{
//install the database
if(is_file($basedir.'/appinfo/database.xml')) {
- if (OC_Appconfig::getValue($info['id'], 'installed_version') === null) {
+ if (\OC::$server->getAppConfig()->getValue($info['id'], 'installed_version') === null) {
OC_DB::createDbFromStructure($basedir.'/appinfo/database.xml');
} else {
OC_DB::updateDbFromStructure($basedir.'/appinfo/database.xml');
@@ -127,8 +127,8 @@ class OC_Installer{
}
//set the installed version
- OC_Appconfig::setValue($info['id'], 'installed_version', OC_App::getAppVersion($info['id']));
- OC_Appconfig::setValue($info['id'], 'enabled', 'no');
+ \OC::$server->getAppConfig()->setValue($info['id'], 'installed_version', OC_App::getAppVersion($info['id']));
+ \OC::$server->getAppConfig()->setValue($info['id'], 'enabled', 'no');
//set remote/public handelers
foreach($info['remote'] as $name=>$path) {
@@ -151,7 +151,7 @@ class OC_Installer{
* Checks whether or not an app is installed, i.e. registered in apps table.
*/
public static function isInstalled( $app ) {
- return (OC_Appconfig::getValue($app, "installed_version") !== null);
+ return (\OC::$server->getAppConfig()->getValue($app, "installed_version") !== null);
}
/**
@@ -184,7 +184,7 @@ class OC_Installer{
* -# setting the installed version
*
* upgrade.php can determine the current installed version of the app using
- * "OC_Appconfig::getValue($appid, 'installed_version')"
+ * "\OC::$server->getAppConfig()->getValue($appid, 'installed_version')"
*/
public static function updateApp( $info=array(), $isShipped=false) {
list($extractDir, $path) = self::downloadApp($info);
@@ -387,7 +387,7 @@ class OC_Installer{
return false;
}
- $ocsid=OC_Appconfig::getValue( $app, 'ocsid', '');
+ $ocsid=\OC::$server->getAppConfig()->getValue( $app, 'ocsid', '');
if($ocsid<>'') {
$ocsClient = new OCSClient(
@@ -503,7 +503,7 @@ class OC_Installer{
$enabled = isset($info['default_enable']);
if( $enabled ) {
OC_Installer::installShippedApp($filename);
- OC_Appconfig::setValue($filename, 'enabled', 'yes');
+ \OC::$server->getAppConfig()->setValue($filename, 'enabled', 'yes');
}
}
}
@@ -533,9 +533,9 @@ class OC_Installer{
if (is_null($info)) {
return false;
}
- OC_Appconfig::setValue($app, 'installed_version', OC_App::getAppVersion($app));
+ \OC::$server->getAppConfig()->setValue($app, 'installed_version', OC_App::getAppVersion($app));
if (array_key_exists('ocsid', $info)) {
- OC_Appconfig::setValue($app, 'ocsid', $info['ocsid']);
+ \OC::$server->getAppConfig()->setValue($app, 'ocsid', $info['ocsid']);
}
//set remote/public handlers