diff options
author | Jakob Sack <kde@jakobsack.de> | 2011-03-12 10:28:10 +0100 |
---|---|---|
committer | Jakob Sack <kde@jakobsack.de> | 2011-03-12 10:28:10 +0100 |
commit | 1aa7fd98c2e9fc20ede32fb6716e35b0827b6a91 (patch) | |
tree | 40e14348efbec8cdecf2d5ea406c68a4061838e8 /lib/app.php | |
parent | 883c7a582de8e9f9455751927069755e74fbd1e3 (diff) | |
download | nextcloud-server-1aa7fd98c2e9fc20ede32fb6716e35b0827b6a91.tar.gz nextcloud-server-1aa7fd98c2e9fc20ede32fb6716e35b0827b6a91.zip |
Refactoring OC_APPCONFIG and OC_PREFERENCES, minor changes to OC_APP. These libraries are skeletons only, the functions need to be written.
Diffstat (limited to 'lib/app.php')
-rw-r--r-- | lib/app.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/app.php b/lib/app.php index 72b6693686e..52c9f11456a 100644 --- a/lib/app.php +++ b/lib/app.php @@ -21,6 +21,11 @@ * */ +/** + * This class manages the apps. It allows them to register and integrate in the + * owncloud ecosystem. Furthermore, this class is responsible for installing, + * upgrading and removing apps. + */ class OC_APP{ static private $init = false; static private $apps = array(); |