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: 2d5d2ce2154f7e4f3f1fe3f4a1c824569523a867 (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' => '',
 'name' => 'Gallery'));
?>