diff options
author | Sam Tuke <samtuke@owncloud.com> | 2012-05-31 17:02:35 +0100 |
---|---|---|
committer | Sam Tuke <samtuke@owncloud.com> | 2012-05-31 17:02:35 +0100 |
commit | 8744b09959de4bfff523555f77c76a0a2153e338 (patch) | |
tree | c66e3b06aa01f75484e43325f895f24398c2ff89 /lib | |
parent | fc400e06c339f41b25ac5fe158c37c473634f39e (diff) | |
download | nextcloud-server-8744b09959de4bfff523555f77c76a0a2153e338.tar.gz nextcloud-server-8744b09959de4bfff523555f77c76a0a2153e338.zip |
added extensive class comment based on icewind's January list email
Diffstat (limited to 'lib')
-rw-r--r-- | lib/filesystemview.php | 52 |
1 files changed, 33 insertions, 19 deletions
diff --git a/lib/filesystemview.php b/lib/filesystemview.php index a55a3a70de8..dcbdd1ae12e 100644 --- a/lib/filesystemview.php +++ b/lib/filesystemview.php @@ -1,25 +1,39 @@ <?php /** -* ownCloud -* -* @author Frank Karlitschek -* @copyright 2012 Frank Karlitschek frank@owncloud.org -* -* This library is free software; you can redistribute it and/or -* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE -* License as published by the Free Software Foundation; either -* version 3 of the License, or any later version. -* -* This library is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU AFFERO GENERAL PUBLIC LICENSE for more details. -* -* You should have received a copy of the GNU Affero General Public -* License along with this library. If not, see <http://www.gnu.org/licenses/>. -* -*/ + * ownCloud + * + * @author Frank Karlitschek + * @copyright 2012 Frank Karlitschek frank@owncloud.org + * + * This library is free software; you can redistribute it and/or + * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE + * License as published by the Free Software Foundation; either + * version 3 of the License, or any later version. + * + * This library is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU AFFERO GENERAL PUBLIC LICENSE for more details. + * + * You should have received a copy of the GNU Affero General Public + * License along with this library. If not, see <http://www.gnu.org/licenses/>. + */ + + +/** + * Class to provide app access to files outside of the currently logged in user's data + * folder. Functions are provided to create a "view" into ownCloud's virtual file + * system, and an API similar to the oc_filesystem class is available for manipulating + * those files (including the ability to read, write, and delete files). + * + * Every view can have it's own chroot, giving it access to a part of the + * filesystem and will provide the same functionality as oc_filesystem. + + * For instance an app can create a new filesystem view on a data folder belonging + * to a user other than the one logged in, so that it may change the files there + * (use case: enabling sharing of files). + */ class OC_FilesystemView { private $fakeRoot=''; |