server/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
2011-07-29 19:36:03 +00:00
OC_App::register( array( "order" => 2, "id" => "files", "name" => "Files" ));
2011-03-03 22:08:11 +00: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 18:00:07 +00:00
OC_Search::registerProvider('OC_Search_Provider_File');