server/apps/files/appinfo/app.php

11 lines
386 B
PHP
Raw Normal View History

<?php
2011-10-01 21:48:00 +00:00
2012-04-14 14:44:15 +00:00
$l=OC_L10N::get('files');
2011-08-09 15:54:02 +00:00
2012-05-01 22:50:26 +00:00
OCP\App::register( array( "order" => 2, "id" => "files", "name" => "Files" ));
2011-03-03 22:08:11 +00:00
2012-05-01 22:50:26 +00:00
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") ));
2011-04-17 18:00:07 +00:00
OC_Search::registerProvider('OC_Search_Provider_File');