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

app.php « appinfo « files « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 355b77d5e7e3beeb9a2886c5fea9f9c10be780e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php


$l=OC_L10N::get('files');

OCP\App::register( array( "order" => 2, "id" => "files", "name" => "Files" ));
OCP\App::registerAdmin('files','admin');

OCP\App::addNavigationEntry( array( "id" => "files_index", "order" => 0, "href" => OCP\Util::linkTo( "files", "index.php" ), "icon" => OCP\Util::imagePath( "core", "places/home.svg" ), "name" => $l->t("Files") ));

OC_Search::registerProvider('OC_Search_Provider_File');