diff options
author | Bart Visscher <bartv@thisnet.nl> | 2011-12-08 20:04:56 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2011-12-08 20:05:12 +0100 |
commit | eeaf539a4414e3081b6f6652167363a3221a1973 (patch) | |
tree | 0616110c205df731c542ea600db369d842a99f9c /apps/gallery/appinfo | |
parent | d4546cdf37bced97d447b5170202cbd61c39d3be (diff) | |
download | nextcloud-server-eeaf539a4414e3081b6f6652167363a3221a1973.tar.gz nextcloud-server-eeaf539a4414e3081b6f6652167363a3221a1973.zip |
Gallery: splitout model code
Diffstat (limited to 'apps/gallery/appinfo')
-rw-r--r-- | apps/gallery/appinfo/app.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/gallery/appinfo/app.php b/apps/gallery/appinfo/app.php index 8f855c470e5..2b1ab857afc 100644 --- a/apps/gallery/appinfo/app.php +++ b/apps/gallery/appinfo/app.php @@ -1,4 +1,8 @@ <?php +OC::$CLASSPATH['OC_Gallery_Album'] = 'apps/gallery/lib/album.php'; +OC::$CLASSPATH['OC_Gallery_Photo'] = 'apps/gallery/lib/photo.php'; +OC::$CLASSPATH['OC_Gallery_Scanner'] = 'apps/gallery/lib/scanner.php'; + OC_App::register(array( 'order' => 20, 'id' => 'gallery', |