Blame view

sources/apps/files/appinfo/app.php 961 Bytes
03e52840d   Kload   Init
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  <?php
  OC::$CLASSPATH['OCA\Files\Capabilities'] = 'apps/files/lib/capabilities.php';
  
  $l = OC_L10N::get('files');
  
  OCP\App::registerAdmin('files', 'admin');
  
  OCP\App::addNavigationEntry( array( "id" => "files_index",
  									"order" => 0,
  									"href" => OCP\Util::linkTo( "files", "index.php" ),
  									"icon" => OCP\Util::imagePath( "core", "places/files.svg" ),
  									"name" => $l->t("Files") ));
  
  OC_Search::registerProvider('OC_Search_Provider_File');
  
  // cache hooks must be connected before all other apps.
  // since 'files' is always loaded first the hooks need to be connected here
  \OC_Hook::connect('OC_Filesystem', 'post_write', '\OC\Files\Cache\Updater', 'writeHook');
  \OC_Hook::connect('OC_Filesystem', 'post_touch', '\OC\Files\Cache\Updater', 'touchHook');
  \OC_Hook::connect('OC_Filesystem', 'post_delete', '\OC\Files\Cache\Updater', 'deleteHook');
  \OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook');