nextcloud/files/appinfo/app.php

11 lines
332 B
PHP
Raw Normal View History

<?php
2011-10-02 01:48:00 +04:00
2011-08-09 19:54:02 +04:00
$l=new OC_L10N('files');
2011-07-29 23:36:03 +04:00
OC_App::register( array( "order" => 2, "id" => "files", "name" => "Files" ));
2011-03-04 01:08:11 +03: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 22:00:07 +04:00
?>