https://github.com/owncloud/core
Raw File
Tip revision: 47f1a2ec3aaf3e257d7309c4341773080219b5e4 authored by HariBhandari07 on 07 July 2020, 04:19:34 UTC
[Tests-Only] Do not Merge. Run local storage test
Tip revision: 47f1a2e
enable_all.php
<?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';

function enableApp($app) {
	try {
		OC_App::enable($app);
	} catch (Exception $e) {
		echo $e;
	}
}

enableApp('files_sharing');
enableApp('files_trashbin');
enableApp('encryption');
enableApp('files_versions');
enableApp('provisioning_api');
enableApp('federation');
enableApp('federatedfilesharing');
back to top