Blame view

sources/apps/gallery/appinfo/app.php 2.03 KB
d1bafeea1   Kload   [fix] Upgrade to ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
  <?php
  
  /**
   * ownCloud - gallery application
   *
   * @author Bartek Przybylski
   * @copyright 2012 Bartek Przybylski bart.p.pl@gmail.com
   *
   * 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 Lesser General Public
   * License along with this library.  If not, see <http://www.gnu.org/licenses/>.
   *
   */
  
  OC::$CLASSPATH['OCA\Gallery\Thumbnail'] = 'gallery/lib/thumbnail.php';
  OC::$CLASSPATH['OCA\Gallery\AlbumThumbnail'] = 'gallery/lib/thumbnail.php';
  OC::$CLASSPATH['OCA\Gallery\Share\Picture'] = 'gallery/lib/share.php';
  OC::$CLASSPATH['OCA\Gallery\Share\Gallery'] = 'gallery/lib/share.php';
  
  $l = OCP\Util::getL10N('gallery');
  
  OCP\App::addNavigationEntry(array(
  		'id' => 'gallery_index',
  		'order' => 3,
  		'href' => OCP\Util::linkTo('gallery', 'index.php'),
  		'icon' => OCP\Util::imagePath('core', 'places/picture.svg'),
  		'name' => $l->t('Pictures'))
  );
  
  // make slideshow available in files and public shares
  OCP\Util::addScript('gallery', 'jquery.mousewheel-3.1.1');
  OCP\Util::addScript( 'gallery', 'slideshow' );
  OCP\Util::addScript( 'gallery', 'public' );
  OCP\Util::addStyle( 'gallery', 'slideshow' );
  
  // register filesystem hooks to update thumbnails
  OCP\Util::connectHook('OC_Filesystem', 'post_write', 'OCA\Gallery\Thumbnail', 'writeHook');
  OCP\Util::connectHook('OC_Filesystem', 'post_delete', 'OCA\Gallery\Thumbnail', 'removeHook');
  
  // register share backend
  OCP\Share::registerBackend('picture', 'OCA\Gallery\Share\Picture', null, array('gif', 'jpeg', 'jpg', 'png', 'svg', 'svgz'));
  OCP\Share::registerBackend('gallery', 'OCA\Gallery\Share\Gallery', 'picture');