nextcloud/apps/files/appinfo/app.php

13 lines
383 B
PHP
Raw Normal View History

<?php
2012-04-14 18:44:15 +04:00
$l=OC_L10N::get('files');
2011-08-09 19:54:02 +04:00
OCP\App::registerAdmin('files', 'admin');
2011-03-04 01:08:11 +03:00
2012-11-29 21:30:02 +04: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 22:00:07 +04:00
OC_Search::registerProvider('OC_Search_Provider_File');