2012-10-27 09:22:00 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
require_once __DIR__.'/../lib/base.php';
|
|
|
|
|
2014-01-15 16:12:42 +00:00
|
|
|
function enableApp($app) {
|
|
|
|
try {
|
2016-10-27 18:13:15 +00:00
|
|
|
(new \OC_App())->enable($app);
|
2014-01-15 16:12:42 +00:00
|
|
|
} catch (Exception $e) {
|
|
|
|
echo $e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enableApp('files_sharing');
|
2014-06-17 11:51:49 +00:00
|
|
|
enableApp('files_trashbin');
|
2015-03-26 10:46:32 +00:00
|
|
|
enableApp('encryption');
|
2014-01-15 16:12:42 +00:00
|
|
|
enableApp('user_ldap');
|
2014-01-21 11:10:24 +00:00
|
|
|
enableApp('files_versions');
|
2014-12-22 13:54:50 +00:00
|
|
|
enableApp('provisioning_api');
|
2015-10-29 16:27:14 +00:00
|
|
|
enableApp('federation');
|
2016-02-04 08:59:52 +00:00
|
|
|
enableApp('federatedfilesharing');
|
2018-01-25 12:44:47 +00:00
|
|
|
enableApp('admin_audit');
|