You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

app.php 385B

12345678910
  1. <?php
  2. $l=new OC_L10N('files');
  3. OC_App::register( array( "order" => 2, "id" => "files", "name" => "Files" ));
  4. 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") ));
  5. OC_Search::registerProvider('OC_Search_Provider_File');