Blame view

sources/apps/gallery/index.php 599 Bytes
d1bafeea1   Kload   [fix] Upgrade to ...
1
2
3
4
5
6
7
8
9
10
11
  <?php
  /**
   * Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
   * This file is licensed under the Affero General Public License version 3 or
   * later.
   * See the COPYING-README file.
   */
  
  OCP\User::checkLoggedIn();
  OCP\App::checkAppEnabled('gallery');
  OCP\App::setActiveNavigationEntry('gallery_index');
6d9380f96   Cédric Dupont   Update sources OC...
12
13
14
15
  OCP\Util::addStyle('gallery', 'styles');
  OCP\Util::addStyle('gallery', 'mobile');
  
  OCP\Util::addScript('gallery', 'album');
d1bafeea1   Kload   [fix] Upgrade to ...
16
17
  OCP\Util::addScript('gallery', 'gallery');
  OCP\Util::addScript('gallery', 'thumbnail');
d1bafeea1   Kload   [fix] Upgrade to ...
18
19
20
  
  $tmpl = new OCP\Template('gallery', 'index', 'user');
  $tmpl->printPage();