Blame view

sources/tests/enable_all.php 511 Bytes
f7d878ff1   kload   [enh] Update to 7...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <?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('files_encryption');
  enableApp('files_external');
  enableApp('user_ldap');
  enableApp('files_versions');