2011-03-03 23:55:32 +03:00
|
|
|
<?php
|
2013-02-10 17:42:23 +04:00
|
|
|
|
2012-11-30 04:41:30 +04:00
|
|
|
$l = OC_L10N::get('files');
|
2011-08-09 19:54:02 +04:00
|
|
|
|
2012-10-23 02:28:12 +04:00
|
|
|
OCP\App::registerAdmin('files', 'admin');
|
2011-03-04 01:08:11 +03:00
|
|
|
|
2013-08-08 01:48:44 +04:00
|
|
|
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")));
|
2011-04-17 22:00:07 +04:00
|
|
|
|
2012-03-02 01:58:44 +04:00
|
|
|
OC_Search::registerProvider('OC_Search_Provider_File');
|
2013-04-16 15:07:55 +04: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 18:38:03 +04:00
|
|
|
\OC_Hook::connect('OC_Filesystem', 'post_rename', '\OC\Files\Cache\Updater', 'renameHook');
|
|
|
|
|
2013-06-02 23:21:39 +04:00
|
|
|
\OCP\BackgroundJob::addRegularTask('\OC\Files\Cache\BackgroundWatcher', 'checkNext');
|
2013-08-08 01:48:44 +04:00
|
|
|
|
|
|
|
$templateManager = OC_Helper::getFileTemplateManager();
|
|
|
|
$templateManager->registerTemplate('text/html', 'core/templates/filetemplates/template.html');
|
2013-08-18 23:11:11 +04:00
|
|
|
$templateManager->registerTemplate('application/vnd.oasis.opendocument.presentation', 'core/templates/filetemplates/template.odp');
|
|
|
|
$templateManager->registerTemplate('application/vnd.oasis.opendocument.text', 'core/templates/filetemplates/template.odt');
|
|
|
|
$templateManager->registerTemplate('application/vnd.oasis.opendocument.spreadsheet', 'core/templates/filetemplates/template.ods');
|