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 508B

12345678910
  1. <?php
  2. $l=OC_L10N::get('files');
  3. OCP\App::register( array( "order" => 2, "id" => "files", "name" => "Files" ));
  4. OCP\App::registerAdmin('files','admin');
  5. 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") ));
  6. OC_Search::registerProvider('OC_Search_Provider_File');
  7. OCP\CONFIG::setAppValue('core', 'remote_webdav', '/apps/files/appinfo/remote.php');