diff options
author | Robin Appelman <icewind1991@gmail.com> | 2011-08-06 23:04:39 +0200 |
---|---|---|
committer | Robin Appelman <icewind1991@gmail.com> | 2011-08-06 23:04:39 +0200 |
commit | be9c044b24045a4fc1a4ac419697efccf1f42d00 (patch) | |
tree | 894a6dd2b32acbfdf7f0a90827e101cea9423618 /lib/base.php | |
parent | d9ccbe96dda717712d67274c777a0e614743784f (diff) | |
download | nextcloud-server-be9c044b24045a4fc1a4ac419697efccf1f42d00.tar.gz nextcloud-server-be9c044b24045a4fc1a4ac419697efccf1f42d00.zip |
descriptions for OC:: variables
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/base.php b/lib/base.php index e9451c45b61..7846f0cfb7d 100644 --- a/lib/base.php +++ b/lib/base.php @@ -35,23 +35,23 @@ class OC{ */ public static $DOCUMENTROOT = ''; /** - * TODO: What's this for? + * The installation path for owncloud on the server (e.g. /srv/http/owncloud) */ public static $SERVERROOT = ''; /** - * TODO: What's this for? + * the current request path relative to the owncloud root (e.g. files/index.php) */ public static $SUBURI = ''; /** - * TODO: What's this for? + * the owncloud root path for http requests (e.g. owncloud/) */ public static $WEBROOT = ''; /** - * TODO: What's this for? + * the folder that stores that data files for the filesystem of the user (e.g. /srv/http/owncloud/data/myusername/files) */ public static $CONFIG_DATADIRECTORY = ''; /** - * TODO: What's this for? + * the folder that stores the data for the root filesystem (e.g. /srv/http/owncloud/data) */ public static $CONFIG_DATADIRECTORY_ROOT = ''; |