Welcome to mirror list, hosted at ThFree Co, Russian Federation.

app.php « appinfo « gallery « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 39fbd95fd2d5d9383d9c2a727507c79b33d5e3ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
OC_App::register(array(
  'order' => 20,
  'id' => 'gallery',
  'name' => 'Gallery'));

OC_App::addNavigationEntry( array(
 'id' => 'gallery_index',
 'order' => 20,
 'href' => OC_Helper::linkTo('gallery', 'index.php'),
 'icon' => OC_Helper::linkTo('', 'core/img/filetypes/image.png'),
 'name' => 'Gallery'));
?>