nextcloud/files/appinfo/app.php

11 lines
385 B
PHP
Raw Normal View History

<?php
2011-10-01 23:48:00 +02:00
2011-08-09 17:54:02 +02:00
$l=new OC_L10N('files');
2011-07-29 21:36:03 +02:00
OC_App::register( array( "order" => 2, "id" => "files", "name" => "Files" ));
2011-03-03 23:08:11 +01:00
OC_App::addNavigationEntry( array( "id" => "files_index", "order" => 1, "href" => OC_Helper::linkTo( "files", "index.php" ), "icon" => OC_Helper::imagePath( "core", "places/home.svg" ), "name" => $l->t("Files") ));
2011-04-17 20:00:07 +02:00
OC_Search::registerProvider('OC_Search_Provider_File');