summaryrefslogtreecommitdiffstats
path: root/files/appinfo/app.php
blob: e8b2f0c31694a920e6973e7c3c530ebf9533281b (plain)
1
2
3
4
5
6
7
8
9
<?php

$l=new OC_L10N('files');

OC_App::register( array( "order" => 2, "id" => "files", "name" => "Files" ));

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") ));

?>