2011-03-03 20:55:32 +00:00
|
|
|
<?php
|
2013-02-10 13:42:23 +00:00
|
|
|
OC::$CLASSPATH['OCA\Files\Capabilities'] = 'apps/files/lib/capabilities.php';
|
|
|
|
|
2012-11-30 00:41:30 +00:00
|
|
|
$l = OC_L10N::get('files');
|
2011-08-09 15:54:02 +00:00
|
|
|
|
2012-10-22 22:28:12 +00:00
|
|
|
OCP\App::registerAdmin('files', 'admin');
|
2011-03-03 22:08:11 +00:00
|
|
|
|
2012-11-29 17:30:02 +00:00
|
|
|
OCP\App::addNavigationEntry( array( "id" => "files_index",
|
|
|
|
"order" => 0,
|
|
|
|
"href" => OCP\Util::linkTo( "files", "index.php" ),
|
2012-12-18 14:41:58 +00:00
|
|
|
"icon" => OCP\Util::imagePath( "core", "places/files.svg" ),
|
2012-11-29 17:30:02 +00:00
|
|
|
"name" => $l->t("Files") ));
|
2011-04-17 18:00:07 +00:00
|
|
|
|
2012-03-01 21:58:44 +00:00
|
|
|
OC_Search::registerProvider('OC_Search_Provider_File');
|
2013-04-16 11:07:55 +00:00
|
|
|
|
|
|
|
// 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');
|
2013-04-20 14:38:03 +00:00
|
|
|
\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook');
|
|
|
|
|
|
|
|
\OC_BackgroundJob_RegularTask::register('\OC\Files\Cache\BackgroundWatcher', 'checkNext');
|