blob: 0b156ced277660046c11250fff7171761d81e30b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
/**
* Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
OC::$CLASSPATH['OC_Filestorage_Archive']='apps/files_archive/lib/storage.php';
OC_Hook::connect('OC_Filesystem','get_mountpoint','OC_Filestorage_Archive','autoMount');
OCP\Util::addscript( 'files_archive', 'archive' );
|